Package org.drinkless.tdlib
Class TdApi.PageBlockTableCell
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.PageBlockTableCell
-
- Enclosing class:
- TdApi
public static class TdApi.PageBlockTableCell extends TdApi.Object
Represents a cell of a table.
-
-
Field Summary
Fields Modifier and Type Field Description TdApi.PageBlockHorizontalAlignmentalignHorizontal cell content alignment.intcolspanThe number of columns the cell spans.static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanisHeaderTrue, if it is a header cell.introwspanThe number of rows the cell spans.TdApi.RichTexttextCell text; may be null.TdApi.PageBlockVerticalAlignmentvalignVertical cell content alignment.
-
Constructor Summary
Constructors Constructor Description PageBlockTableCell()Represents a cell of a table.PageBlockTableCell(TdApi.RichText text, boolean isHeader, int colspan, int rowspan, TdApi.PageBlockHorizontalAlignment align, TdApi.PageBlockVerticalAlignment valign)Represents a cell of a table.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
text
public TdApi.RichText text
Cell text; may be null. If the text is null, then the cell must be invisible.
-
isHeader
public boolean isHeader
True, if it is a header cell.
-
colspan
public int colspan
The number of columns the cell spans.
-
rowspan
public int rowspan
The number of rows the cell spans.
-
align
public TdApi.PageBlockHorizontalAlignment align
Horizontal cell content alignment.
-
valign
public TdApi.PageBlockVerticalAlignment valign
Vertical cell content alignment.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PageBlockTableCell
public PageBlockTableCell()
Represents a cell of a table.
-
PageBlockTableCell
public PageBlockTableCell(TdApi.RichText text, boolean isHeader, int colspan, int rowspan, TdApi.PageBlockHorizontalAlignment align, TdApi.PageBlockVerticalAlignment valign)
Represents a cell of a table.- Parameters:
text- Cell text; may be null. If the text is null, then the cell must be invisible.isHeader- True, if it is a header cell.colspan- The number of columns the cell spans.rowspan- The number of rows the cell spans.align- Horizontal cell content alignment.valign- Vertical cell content alignment.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-