Class TableView.CellPosition

Definition

Namespace:
Tizen.NUI.BaseComponents
Assembly:
Tizen.NUI.dll
API Level:
3

Class to specify the layout position for the child view.

C#
Copy
public class CellPosition : Disposable, IDisposable
Inheritance
System.Object
TableView.CellPosition
Implements
System.IDisposable

Constructors

View Source

CellPosition()

The default constructor.

Declaration
C#
Copy
public CellPosition()
API Level: 3
View Source

CellPosition(UInt32)

The constructor to initialize values to default for convenience.

Declaration
C#
Copy
public CellPosition(uint rowIndex)
Parameters
Type Name Description
System.UInt32 rowIndex

The row index initialized.

API Level: 3
View Source

CellPosition(UInt32, UInt32)

The constructor to initialize values to defaults for convenience.

Declaration
C#
Copy
public CellPosition(uint rowIndex, uint columnIndex)
Parameters
Type Name Description
System.UInt32 rowIndex

The row index initialized.

System.UInt32 columnIndex

The column index initialized.

API Level: 3
View Source

CellPosition(UInt32, UInt32, UInt32)

The constructor to initialize values to defaults for convenience.

Declaration
C#
Copy
public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan)
Parameters
Type Name Description
System.UInt32 rowIndex

The row index initialized.

System.UInt32 columnIndex

The column index initialized.

System.UInt32 rowSpan

The row span initialized.

API Level: 3
View Source

CellPosition(UInt32, UInt32, UInt32, UInt32)

The constructor.

Declaration
C#
Copy
public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan, uint columnSpan)
Parameters
Type Name Description
System.UInt32 rowIndex

The row index initialized.

System.UInt32 columnIndex

The column index initialized.

System.UInt32 rowSpan

The row span initialized.

System.UInt32 columnSpan

The column span initialized.

API Level: 3

Properties

View Source

ColumnIndex

The index or position of a column.

Declaration
C#
Copy
public uint ColumnIndex { get; }
Property Value
Type Description
System.UInt32
API Level: 5
View Source

ColumnSpan

The span of a column.

Declaration
C#
Copy
public uint ColumnSpan { get; }
Property Value
Type Description
System.UInt32
API Level: 5
View Source

RowIndex

The index or position of a row.

Declaration
C#
Copy
public uint RowIndex { get; }
Property Value
Type Description
System.UInt32
API Level: 5
View Source

RowSpan

The span of a row.

Declaration
C#
Copy
public uint RowSpan { get; }
Property Value
Type Description
System.UInt32
API Level: 5

Implements

System.IDisposable