Class LayerPropertyExtensions
- Namespace
- Artemis.UI.Shared.Extensions
- Assembly
- Artemis.UI.Shared.dll
Provides utilities when working with layer properties in a UI context.
public static class LayerPropertyExtensions
- Inheritance
-
objectLayerPropertyExtensions
Methods
AsObservable<T>(LayerProperty<T>)
Returns an observable sequence of layer property values starting with the current value.
public static IObservable<T> AsObservable<T>(this LayerProperty<T> layerProperty)
Parameters
layerPropertyLayerProperty<T>The layer property to create the sequence of.
Returns
- IObservable<T>
An observable sequence of layer property values starting with the current value.
Type Parameters
TThe value type of the layer property.