E3DSizeToContent Enumeration |
Represents how an
IWindow will be sized with relation to its content.
Namespace:
Demo3D.Gui
Assembly:
WpfControls (in WpfControls.dll) Version: 15.0.2.11458
Syntaxpublic enum E3DSizeToContent
Members|
| Member name | Value | Description |
|---|
| Manual | 0 |
Specifies that a window will not automatically set its size to fit the size of
its content. Instead, the size of a window is determined by other properties, such as Width and Height.
|
| Width | 1 |
Specifies that a window will automatically set its width to fit the width of
its content, but not the height.
|
| Height | 2 |
Specifies that a window will automatically set its height to fit the height of
its content, but not the width.
|
| WidthAndHeight | 3 |
Specifies that a window will automatically set both its width and height to fit
the width and height of its content.
|
See Also