[]
Represents the outline column for the worksheet.
public interface IOutlineColumn
Gets or sets the collapse indicator image.
ImageSource CollapseIndicator { get; set; }
Gets or sets the column index, the column is displayed as a tree structure.
int ColumnIndex { get; set; }
Gets or sets the expand indicator image.
ImageSource ExpandIndicator { get; set; }
Gets the images by level.
IList<ImageSource> Images { get; }
Gets or sets the the max row level.The default value is 10.
int MaxLevel { get; set; }
Gets or sets whether to display the checkbox.
bool ShowCheckBox { get; set; }
Gets or sets whether to display the images.
bool ShowImage { get; set; }
Gets or sets whether to display the indicator.
bool ShowIndicator { get; set; }
Gets the check status of the row.
bool GetCheckStatus(int row)
row
intThe index of the row.
Whether the specified row is checked.
Gets the collapsed of the row.
bool GetCollapsed(int row)
row
intThe index of the row to get collapsed.
Whether the specified row is collapsed.
Refreshes the outline column.
void Refresh()
Sets the check status of the row.
void SetCheckStatus(int row, bool checkStatus)
row
intThe index of the row.
checkStatus
boolThe check status of the row.
Sets the collapsed of the row.
void SetCollapsed(int row, bool collapsed)
row
intThe index of the row.
collapsed
boolThe collapsed of the row.