OdsCellField
Contents
[
Hide
]OdsCellField class
Represents the cell field of ods.
class OdsCellField;
Methods
Method | Description |
---|---|
getCustomFormat() | Represents the custom format of the field’s value. |
setCustomFormat(string) | Represents the custom format of the field’s value. |
getFieldType() | Gets and sets the type of the field. |
setFieldType(OdsCellFieldType) | Gets and sets the type of the field. |
getRow() | Get and sets the row index of the cell. |
setRow(number) | Get and sets the row index of the cell. |
getColumn() | Get and sets the column index of the cell. |
setColumn(number) | Get and sets the column index of the cell. |
isNull() | Checks whether the implementation object is null. |
getCustomFormat()
Represents the custom format of the field’s value.
getCustomFormat() : string;
setCustomFormat(string)
Represents the custom format of the field’s value.
setCustomFormat(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getFieldType()
Gets and sets the type of the field.
getFieldType() : OdsCellFieldType;
Returns
setFieldType(OdsCellFieldType)
Gets and sets the type of the field.
setFieldType(value: OdsCellFieldType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | OdsCellFieldType | The value to set. |
getRow()
Get and sets the row index of the cell.
getRow() : number;
setRow(number)
Get and sets the row index of the cell.
setRow(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getColumn()
Get and sets the column index of the cell.
getColumn() : number;
setColumn(number)
Get and sets the column index of the cell.
setColumn(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;