Table of Contents

Class TableLayoutPanelCellSpan

Namespace
Bonsai.Design.Visualizers
Assembly
Bonsai.Design.Visualizers.dll

Represents the vertical and horizontal span of a table layout cell.

public class TableLayoutPanelCellSpan
Inheritance
TableLayoutPanelCellSpan
Inherited Members

Constructors

TableLayoutPanelCellSpan()

Initializes a new instance of the TableLayoutPanelCellSpan class.

public TableLayoutPanelCellSpan()

TableLayoutPanelCellSpan(int, int)

Initializes a new instance of the TableLayoutPanelCellSpan class using the specified column and row span.

public TableLayoutPanelCellSpan(int columnSpan, int rowSpan)

Parameters

columnSpan int

The number of columns spanned by the table layout cell.

rowSpan int

The number of rows spanned by the table layout cell.

Properties

ColumnSpan

Gets the number of columns spanned by this table layout cell.

public int ColumnSpan { get; set; }

Property Value

int

RowSpan

Gets the number of rows spanned by this table layout cell.

public int RowSpan { get; set; }

Property Value

int

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.