AnimationPropertyAccessMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines constants that specify how an animated property can be accessed.
public enum class AnimationPropertyAccessMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.LiftedContract, 65536)]
enum class AnimationPropertyAccessMode
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.WindowsAppSDKContract, 65536)]
enum class AnimationPropertyAccessMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.LiftedContract), 65536)]
public enum AnimationPropertyAccessMode
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.WindowsAppSDKContract), 65536)]
public enum AnimationPropertyAccessMode
var value = Microsoft.UI.Composition.AnimationPropertyAccessMode.none
Public Enum AnimationPropertyAccessMode
- Inheritance
-
AnimationPropertyAccessMode
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | The property cannot be accessed. |
ReadOnly | 1 | The property can only be read. |
WriteOnly | 2 | The property can only be written to. |
ReadWrite | 3 | The property can be read or written to. |