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.
public class CellPosition : Disposable, IDisposable
- Inheritance
- Implements
Constructors
View SourceCellPosition()
The default constructor.
Declaration
public CellPosition()
API Level: 3
View SourceCellPosition(UInt32)
The constructor to initialize values to default for convenience.
Declaration
public CellPosition(uint rowIndex)
Parameters
Type | Name | Description |
---|---|---|
UInt32 | rowIndex | The row index initialized. |
API Level: 3
View SourceCellPosition(UInt32, UInt32)
The constructor to initialize values to defaults for convenience.
Declaration
public CellPosition(uint rowIndex, uint columnIndex)
Parameters
Type | Name | Description |
---|---|---|
UInt32 | rowIndex | The row index initialized. |
UInt32 | columnIndex | The column index initialized. |
API Level: 3
View SourceCellPosition(UInt32, UInt32, UInt32)
The constructor to initialize values to defaults for convenience.
Declaration
public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan)
Parameters
Type | Name | Description |
---|---|---|
UInt32 | rowIndex | The row index initialized. |
UInt32 | columnIndex | The column index initialized. |
UInt32 | rowSpan | The row span initialized. |
API Level: 3
View SourceCellPosition(UInt32, UInt32, UInt32, UInt32)
The constructor.
Declaration
public CellPosition(uint rowIndex, uint columnIndex, uint rowSpan, uint columnSpan)
Parameters
Type | Name | Description |
---|---|---|
UInt32 | rowIndex | The row index initialized. |
UInt32 | columnIndex | The column index initialized. |
UInt32 | rowSpan | The row span initialized. |
UInt32 | columnSpan | The column span initialized. |
API Level: 3
Properties
View SourceColumnIndex
The index or position of a column.
Declaration
public uint ColumnIndex { get; }
Property Value
Type | Description |
---|---|
UInt32 |
API Level: 5
View SourceColumnSpan
The span of a column.
Declaration
public uint ColumnSpan { get; }
Property Value
Type | Description |
---|---|
UInt32 |
API Level: 5
View SourceRowIndex
The index or position of a row.
Declaration
public uint RowIndex { get; }
Property Value
Type | Description |
---|---|
UInt32 |
API Level: 5
View SourceRowSpan
The span of a row.
Declaration
public uint RowSpan { get; }
Property Value
Type | Description |
---|---|
UInt32 |