-
com.grapecity.documents.excel
-
- EventHandler
- IAboveAverage
- IAreas
- IAuthor
- IAutoCorrect
- IAutoFilter
- IAutoMergeRangeInfo
- IBarcode
- IBorder
- IBorders
- IBuiltInDocumentPropertyCollection
- ICalcContext
- ICalculatedFields
- ICalculatedItems
- ICascadeSparkLine
- ICellCollection
- ICellColorSortField
- ICellDecoration
- ICellDecorationIcon
- ICellPadding
- ICodabar
- ICode128
- ICode39
- ICode49
- ICode93
- IColorScale
- IColorScaleCriteria
- IColorScaleCriterion
- IColorStop
- IColorStops
- IComment
- IComments
- ICommentsThreaded
- ICommentThreaded
- IConditionValue
- ICornerFold
- ICsvParser
- ICustomDocumentPropertyCollection
- ICustomView
- ICustomViews
- IDataBar
- IDataBarBorder
- IDataMatrix
- IDataOptions
- IDisplayFormat
- IDocumentProperty
- IDocumentPropertyCollection
- IEAN13
- IEAN8
- IExcelOptions
- IFilter
- IFilters
- IFont
- IFontColorSortField
- IFontOption
- IFontProvider
- IFormatColor
- IFormatCondition
- IFormatConditions
- IFormulaOptions
- IFormulaResolver
- IGraphic
- IGraphicsInfo
- IGroupInfo
- IGS1128
- IHeaderFooter
- IHPageBreak
- IHPageBreaks
- IHyperlink
- IHyperlinks
- IIcon
- IIconCriteria
- IIconCriterion
- IIconSet
- IIconSetCondition
- IIconSets
- IIconSortField
- IInterior
- IJsonSerializer
- ILabelOption
- ILabelOptions
- ILinearGradient
- IName
- INames
- INegativeBarFormat
- IOutline
- IOutlineColumn
- IPage
- IPageSetup
- IPane
- IPanes
- IPDF417
- IPDFRenderEngine
- IPivotAxis
- IPivotCache
- IPivotCaches
- IPivotCell
- IPivotField
- IPivotFields
- IPivotFilter
- IPivotFilters
- IPivotFormula
- IPivotFormulas
- IPivotItem
- IPivotItemList
- IPivotItems
- IPivotLine
- IPivotLineCells
- IPivotLines
- IPivotTable
- IPivotTables
- IPivotValueCell
- IProtectionSettings
- IQRCode
- IRange
- IRangeProvider
- IReadOnlySignatureDetails
- IRectangularGradient
- IRichText
- IScenario
- IScenarios
- ISheetTab
- ISheetTabs
- IShrinkToFitSettings
- ISignature
- ISignatureSet
- ISignatureSetup
- ISlicer
- ISlicerCache
- ISlicerCaches
- ISlicerItem
- ISlicerItems
- ISlicerPivotTables
- ISlicers
- ISort
- ISortField
- ISortFields
- ISparkAxes
- ISparkColor
- ISparkHorizontalAxis
- ISparkline
- ISparklineGroup
- ISparklineGroups
- ISparkLineObject
- ISparkPoints
- ISparkVerticalAxis
- IStyle
- IStyleCollection
- ITable
- ITableColumn
- ITableColumns
- ITableDataSource
- ITableRow
- ITableRows
- ITables
- ITableStyle
- ITableStyleCollection
- ITableStyleElement
- ITableStyleElements
- ITableStyleInfo
- ITextRun
- ITheme
- IThemeColor
- IThemeColorScheme
- IThemeFont
- IThemeFonts
- IThemeFontScheme
- ITop10
- IUniqueValues
- IValidation
- IValueSortField
- IVPageBreak
- IVPageBreaks
- IWebRequestHandler
- IWorkbook
- IWorkbookView
- IWorksheet
- IWorksheets
- IWorksheetView
- RangeFindReplace.FindReplaceImpl.FindMatch
- RangePartialClasses.FindReplaceImpl.FindMatch
-
- com.grapecity.documents.excel.drawing
- com.grapecity.documents.excel.expressions
- com.grapecity.documents.excel.forms
- com.grapecity.documents.excel.template
- com.grapecity.documents.excel.template.DataSource
(Showing Draft Content)
IOutlineColumn
Interface IOutlineColumn
public interface IOutlineColumn
Represents the outline column for the worksheet.
-
Method Summary
Modifier and TypeMethodDescriptionbooleangetCheckStatus(int row) Gets the check status of the row.booleangetCollapsed(int row) Gets the collapsed of the row.Gets the expand collapse image.intGets the column index, the column is displayed as a tree structure.Gets the expand indicator image.Gets the images by level.intGets the the max row level.booleanGets whether to display the checkbox.booleanGets whether to display the images.booleanGets whether to display the indicator.voidrefresh()Refreshes the outline column.voidsetCheckStatus(int row, boolean checkStatus) Sets the check status of the row.voidsetCollapsed(int row, boolean collapsed) Sets the collapsed of the row.voidsetCollapseIndicator(ImageSource value) Sets the expand collapse image.voidsetColumnIndex(int value) Sets the column index, the column is displayed as a tree structure.voidsetExpandIndicator(ImageSource value) Sets the expand indicator image.voidsetMaxLevel(int value) Sets the the max row level.voidsetShowCheckBox(boolean value) Sets whether to display the checkbox.voidsetShowImage(boolean value) Sets whether to display the images.voidsetShowIndicator(boolean value) Sets whether to display the indicator.
-
Method Details
-
getColumnIndex
int getColumnIndex()Gets the column index, the column is displayed as a tree structure. -
setColumnIndex
void setColumnIndex(int value) Sets the column index, the column is displayed as a tree structure. -
getShowImage
boolean getShowImage()Gets whether to display the images. -
setShowImage
void setShowImage(boolean value) Sets whether to display the images. -
getShowCheckBox
boolean getShowCheckBox()Gets whether to display the checkbox. -
setShowCheckBox
void setShowCheckBox(boolean value) Sets whether to display the checkbox. -
getShowIndicator
boolean getShowIndicator()Gets whether to display the indicator. -
setShowIndicator
void setShowIndicator(boolean value) Sets whether to display the indicator. -
getMaxLevel
int getMaxLevel()Gets the the max row level. The default value is 10. -
setMaxLevel
void setMaxLevel(int value) Sets the the max row level. -
getImages
List<ImageSource> getImages()Gets the images by level. -
getExpandIndicator
ImageSource getExpandIndicator()Gets the expand indicator image. -
setExpandIndicator
Sets the expand indicator image. -
getCollapseIndicator
ImageSource getCollapseIndicator()Gets the expand collapse image. -
setCollapseIndicator
Sets the expand collapse image. -
setCheckStatus
void setCheckStatus(int row, boolean checkStatus) Sets the check status of the row.- Parameters:
row- The index of the row.checkStatus- The check status of the row.
-
getCheckStatus
boolean getCheckStatus(int row) Gets the check status of the row.- Parameters:
row- The index of the row.- Returns:
- Whether the specified row is checked.
-
setCollapsed
void setCollapsed(int row, boolean collapsed) Sets the collapsed of the row.- Parameters:
row- The index of the row.collapsed- The collapsed of the row.
-
getCollapsed
boolean getCollapsed(int row) Gets the collapsed of the row.- Parameters:
row- The index of the row to get collapsed.- Returns:
- Whether the specified row is collapsed.
-
refresh
void refresh()Refreshes the outline column.
-