namespace LanMountainDesktop.AirAppSdk;
///
/// Resize mode for AirApp desktop components.
///
public enum AirAppComponentResizeMode
{
///
/// Cannot be resized.
///
None = 0,
///
/// Can be resized horizontally only.
///
Horizontal = 1,
///
/// Can be resized vertically only.
///
Vertical = 2,
///
/// Can be resized in both directions.
///
Both = 3
}