Skip to main content
Version: 4.1

TableLayoutRowStyleCollection

Namespace: Wisej.Web

Assembly: Wisej.Framework (4.1.0.0)

A collection that stores RowStyle objects.

public class TableLayoutRowStyleCollection : TableLayoutStyleCollection

Properties

Instance member Item(index)

RowStyle: Returns or sets the RowStyle at the specified index.

Methods

Instance member Add(rowStyle)

Adds a new RowStyle to the TableLayoutRowStyleCollection.

ParameterTypeDescription
rowStyleRowStyleThe RowStyle to add to the TableLayoutRowStyleCollection.

Returns: Int32. The position into which the new element was inserted.

Instance member Contains(rowStyle)

Determines whether the TableLayoutRowStyleCollection contains a specific style.

ParameterTypeDescription
rowStyleRowStyleThe RowStyle to locate in the TableLayoutRowStyleCollection.

Returns: Boolean. true if the RowStyle is found in the TableLayoutRowStyleCollection; otherwise, false.

Instance member IndexOf(rowStyle)

Determines the index of a specific item in the TableLayoutRowStyleCollection.

ParameterTypeDescription
rowStyleRowStyleThe RowStyle to locate in the TableLayoutRowStyleCollection.

Returns: Int32. The index of rowStyle if found in the TableLayoutRowStyleCollection; otherwise, -1.

Instance member Insert(index, rowStyle)

Inserts a RowStyle into the TableLayoutRowStyleCollection at the specified position.

ParameterTypeDescription
indexInt32The zero-based index at which the RowStyle should be inserted.
rowStyleRowStyleThe RowStyle to insert into the TableLayoutRowStyleCollection. The value can be null.

Instance member Remove(rowStyle)

Removes the first occurrence of a specific object from the TableLayoutRowStyleCollection.

ParameterTypeDescription
rowStyleRowStyleThe RowStyle to remove from the TableLayoutRowStyleCollection. The value can be null.