Click or drag to resize

E3DSizeToContent Enumeration

Represents how an IWindow will be sized with relation to its content.

Namespace: Demo3D.Gui
Assembly: WpfControls (in WpfControls.dll) Version: 19.00.00
Syntax
C#
public enum E3DSizeToContent
Members
Member nameValueDescription
Manual0 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.
Width1 Specifies that a window will automatically set its width to fit the width of its content, but not the height.
Height2 Specifies that a window will automatically set its height to fit the height of its content, but not the width.
WidthAndHeight3 Specifies that a window will automatically set both its width and height to fit the width and height of its content.
See Also