GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoSubGraph Class / IsExpanded Property
In This Topic
    IsExpanded Property (GoSubGraph)
    In This Topic
    Gets or sets whether this subgraph is in an expanded state.
    Syntax
    [Category("Appearance")]
    [DefaultValue(true)]
    [Description("Whether this subgraph is in an expanded state")]
    public bool IsExpanded {get; set;}

    Property Value

    The initial value is true.
    Remarks
    The getter is implemented as this.State == GoSubGraphState.Expanded. The setter is implemented as a call to either Collapse or Expand, depending on the value of State and whether the new value is false or true.
    See Also