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