[]
Gets or sets the image used as the expand indicator in the outline column.
This image is displayed for expandable rows when the outline column shows hierarchy indicators.
ImageSource ExpandIndicator { get; set; }
Property ExpandIndicator As ImageSource
IOutlineColumn outlineColumn = worksheet.OutlineColumn;
outlineColumn.ColumnIndex = 0;
outlineColumn.ExpandIndicator = new ImageSource(
new MemoryStream(new byte[] {(byte) 137, 80, 78, 71, 13, 10, 26, 10}),
ImageType.PNG);
ImageSource indicator = outlineColumn.ExpandIndicator;