public interface IOutlineColumn
| Modifier and Type | Method and Description |
|---|---|
boolean |
getCheckStatus(int row)
Gets the check status of the row.
|
boolean |
getCollapsed(int row)
Gets the collapsed of the row.
|
ImageSource |
getCollapseIndicator()
Gets the expand collapse image.
|
int |
getColumnIndex()
Gets the column index, the column is displayed as a tree structure.
|
ImageSource |
getExpandIndicator()
Gets the expand indicator image.
|
java.util.List<ImageSource> |
getImages()
Gets the images by level.
|
int |
getMaxLevel()
Gets the the max row level.
|
boolean |
getShowCheckBox()
Gets whether to display the checkbox.
|
boolean |
getShowImage()
Gets whether to display the images.
|
boolean |
getShowIndicator()
Gets whether to display the indicator.
|
void |
refresh()
Refreshes the outline column.
|
void |
setCheckStatus(int row,
boolean checkStatus)
Sets the check status of the row.
|
void |
setCollapsed(int row,
boolean collapsed)
Sets the collapsed of the row.
|
void |
setCollapseIndicator(ImageSource value)
Sets the expand collapse image.
|
void |
setColumnIndex(int value)
Sets the column index, the column is displayed as a tree structure.
|
void |
setExpandIndicator(ImageSource value)
Sets the expand indicator image.
|
void |
setMaxLevel(int value)
Sets the the max row level.
|
void |
setShowCheckBox(boolean value)
Sets whether to display the checkbox.
|
void |
setShowImage(boolean value)
Sets whether to display the images.
|
void |
setShowIndicator(boolean value)
Sets whether to display the indicator.
|
int getColumnIndex()
void setColumnIndex(int value)
boolean getShowImage()
void setShowImage(boolean value)
boolean getShowCheckBox()
void setShowCheckBox(boolean value)
boolean getShowIndicator()
void setShowIndicator(boolean value)
int getMaxLevel()
void setMaxLevel(int value)
java.util.List<ImageSource> getImages()
ImageSource getExpandIndicator()
void setExpandIndicator(ImageSource value)
ImageSource getCollapseIndicator()
void setCollapseIndicator(ImageSource value)
void setCheckStatus(int row,
boolean checkStatus)
row - The index of the row.checkStatus - The check status of the row.boolean getCheckStatus(int row)
row - The index of the row.void setCollapsed(int row,
boolean collapsed)
row - The index of the row.collapsed - The collapsed of the row.boolean getCollapsed(int row)
row - The index of the row to get collapsed.void refresh()