MoveSizeOperation 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.
Specifies the types of move and resize operations being performed on an object.
public enum class MoveSizeOperation
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Foundation.WindowsAppSDKContract, 65542)]
enum class MoveSizeOperation
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Foundation.WindowsAppSDKContract), 65542)]
public enum MoveSizeOperation
var value = Microsoft.UI.Input.MoveSizeOperation.move
Public Enum MoveSizeOperation
- Inheritance
-
MoveSizeOperation
- Attributes
Fields
Move | 0 | The object is being moved. |
SizeBottom | 1 | The object is being resized with the bottom border. |
SizeBottomLeft | 2 | The object is being resized with the bottom-left corner. |
SizeBottomRight | 3 | The object is being resized with the bottom-right corner. |
SizeLeft | 4 | The object is being resized with the left border. |
SizeRight | 5 | The object is being resized with the right border. |
SizeTop | 6 | The object is being resized with the top border. |
SizeTopLeft | 7 | The object is being resized with the top-left corner. |
SizeTopRight | 8 | The object is being resized with the top-right corner. |