java.lang.Object
com.aspose.cells.Row
public abstract class Row
| Property Getters/Setters Summary | ||
|---|---|---|
abstract Cell | getFirstCell() | |
| Gets the first cell in the row. | ||
abstract byte | getGroupLevel() | |
| Gets the group level of the row. | ||
abstract double | getHeight() | |
abstract void | setHeight(double value) | |
| Gets and sets the row height in unit of Points. | ||
abstract int | getIndex() | |
| Gets the index of this row. | ||
abstract boolean | isBlank() | |
| Indicates whether the row contains any data | ||
abstract boolean | isHeightMatched() | |
abstract void | setHeightMatched(boolean value) | |
| Indicates that row height and default font height matches | ||
abstract boolean | isHidden() | |
abstract void | setHidden(boolean value) | |
| Indicates whether the row is hidden. | ||
abstract Cell | getLastCell() | |
| Gets the last cell in the row. | ||
abstract Cell | getLastDataCell() | |
| Gets the last cell in the row. | ||
abstract Style | getStyle() | |
| Represents the style of this row. | ||
abstract Cell | get(int column) | |
| Gets the cell. | ||
| Method Summary | ||
|---|---|---|
abstract void | applyStyle(Style style, StyleFlag flag) | |
| Applies formats for a whole row. | ||
abstract boolean | equals(Row row) | |
| Checks whether this object refers to the same row with another row object. | ||
abstract Cell | getCellByIndex(int index) | |
| Get the cell by specific index in the list. | ||
abstract Cell | getCellOrNull(int column) | |
| Gets the cell or null in the specific index. | ||
abstract java.util.Iterator | iterator() | |
| Gets the cells enumerator | ||
| Property Getters/Setters Detail |
|---|
isBlank | |
public abstract boolean isBlank() | |
getHeight/setHeight | |
public abstract double getHeight() / public abstract void setHeight(double value) | |
isHidden/setHidden | |
public abstract boolean isHidden() / public abstract void setHidden(boolean value) | |
getIndex | |
public abstract int getIndex() | |
getGroupLevel | |
public abstract byte getGroupLevel() | |
isHeightMatched/setHeightMatched | |
public abstract boolean isHeightMatched() / public abstract void setHeightMatched(boolean value) | |
getStyle | |
public abstract Style getStyle() | |
getFirstCell | |
public abstract Cell getFirstCell() | |
getLastCell | |
public abstract Cell getLastCell() | |
getLastDataCell | |
public abstract Cell getLastDataCell() | |
get | |
public abstract Cell get(int column) | |
column - The column index| Method Detail |
|---|
getCellByIndex | |
public abstract Cell getCellByIndex(int index) | |
index - The position.iterator | |
public abstract java.util.Iterator iterator() | |
getCellOrNull | |
public abstract Cell getCellOrNull(int column) | |
column - The column indexapplyStyle | |
public abstract void applyStyle(Style style, StyleFlag flag) | |
style - The style object which will be applied.flag - Flags which indicates applied formatting properties.equals | |
public abstract boolean equals(Row row) | |
row - another row object