Contains values that identify the possible ways to synchronize the size of a ControlNode node with the size of its hosted control.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public enum SizeSyncMode |
Visual Basic
Copy Code
|
|---|
Public Enum SizeSyncMode |
Members| Member name | Description | |
|---|---|---|
![]() |
Arrange |
Resizing the node calls Arrange on the hosted element. |
![]() |
Measure |
The node is resized automatically to match the element's DesiredSize. |
![]() |
SetSize |
Resizing the node sets the hosted element's Width and Height properties. |
See Also