Gets or sets a value indicating whether this item is visible.
Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming
SyntaxC#
Copy Code
|
|---|
public virtual bool Visible { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Overridable Property Visible As Boolean |
true if the item is visible; otherwise, false.
RemarksInvisible items are not drawn at all. You might use the property to hide or show items temporarily, or to construct complex group hierarchies in which intermediate helper items are invisible.
Invisible nodes are ignored by automatic layout methods. The position of such nodes won't change when the Arrange method of a layout class is called. Visible items can be ignored too by enabling their IgnoreLayout property.
See Also