This topic has not yet been rated - Rate this topic

TableLayoutRowStyleCollection Class

A collection that stores RowStyle objects.

System.Object
  System.Windows.Forms.TableLayoutStyleCollection
    System.Windows.Forms.TableLayoutRowStyleCollection

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
public class TableLayoutRowStyleCollection : TableLayoutStyleCollection

The TableLayoutRowStyleCollection type exposes the following members.

  Name Description
Public property Count Gets the number of styles actually contained in the TableLayoutStyleCollection. (Inherited from TableLayoutStyleCollection.)
Public property Item Gets or sets the RowStyle at the specified index.
Top
  Name Description
Public method Add(RowStyle) Adds a new RowStyle to the TableLayoutRowStyleCollection.
Public method Add(TableLayoutStyle) Adds a new TableLayoutStyle to the end of the current collection. (Inherited from TableLayoutStyleCollection.)
Public method Clear Disassociates the collection from its associated TableLayoutPanel and empties the collection. (Inherited from TableLayoutStyleCollection.)
Public method Contains Determines whether the TableLayoutRowStyleCollection contains a specific style.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method IndexOf Determines the index of a specific item in the TableLayoutRowStyleCollection.
Public method Insert Inserts a RowStyle into the TableLayoutRowStyleCollection at the specified position.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Remove Removes the first occurrence of a specific object from the TableLayoutRowStyleCollection.
Public method RemoveAt Removes the style at the specified index of the collection. (Inherited from TableLayoutStyleCollection.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Explicit interface implemetation Private method ICollection.CopyTo For a description of this method, see the ICollection.CopyTo method. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private property ICollection.IsSynchronized For a description of this method, see the ICollection.IsSynchronized property. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private property ICollection.SyncRoot For a description of this method, see the ICollection.SyncRoot property. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private method IEnumerable.GetEnumerator For a description of this method, see the IEnumerable.GetEnumerator method. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private method IList.Add For a description of this method, see the IList.Add method. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private method IList.Contains For a description of this method, see the IList.Contains method. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private method IList.IndexOf For a description of this method, see the IList.IndexOf method. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private method IList.Insert For a description of this method, see the IList.Insert method. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private property IList.IsFixedSize For a description of this method, see the IList.IsFixedSize property. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private property IList.IsReadOnly For a description of this method, see the IList.IsReadOnly property. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private property IList.Item For a description of this method, see the IList.Item property. (Inherited from TableLayoutStyleCollection.)
Explicit interface implemetation Private method IList.Remove For a description of this method, see the IList.Remove method. (Inherited from TableLayoutStyleCollection.)
Top

The TableLayoutRowStyleCollection class represents the collection of all the styles used to describe the rows in an associated TableLayoutPanel.

The following example shows how to set RowStyle for a TableLayoutRowStyleCollection. This code example is part of a larger example provided for the TableLayoutPanel control.


    private void toggleRowStylesBtn_Click(
		System.Object sender, 
		System.EventArgs e)
    {
		TableLayoutRowStyleCollection styles = 
			this.TableLayoutPanel1.RowStyles;

        foreach( RowStyle style in styles )
        {
            if (style.SizeType==SizeType.Absolute)
            {
                style.SizeType = SizeType.AutoSize;
            }
            else if(style.SizeType==SizeType.AutoSize)
            {
                style.SizeType = SizeType.Percent;

                // Set the row height to be a percentage
                // of the TableLayoutPanel control's height.
                style.Height = 33;
            }
            else
            {

                // Set the row height to 50 pixels.
                style.SizeType = SizeType.Absolute;
                style.Height = 50;
            }
        }
    }


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ