Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns whether the column's outlined column group is collapsed. If the outline is collapsed, the column is hidden.{excerpt}
{signature:C#}
 public boolean OutlineCollapsed{ get; set; }
{signature}{signature:vb.net}
Public Property OutlineCollapsed() As Boolean
{signature}
{example}{code:csharp|title=C#}

          bool collapsed = colProps.OutlineCollapsed;
          colProps.OutlineCollapsed = true;
        {code}
{code:vb.net|title=vb.net}

          Dim collapsed As Boolean = colProps.OutlineCollapsed
          colProps.OutlineCollapsed = True
        {code}

{example}