-
com.grapecity.documents.excel
-
- AsyncCustomFunction
- BaseCellType
- ButtonCellType
- CalcReference
- CancellationToken
- CancellationTokenSource
- CellColorSortField
- CellDecoration
- CellDecorationIcon
- CellInfo
- CellPadding
- CheckBoxCellType
- CheckBoxListCellType
- Color
- ColorUtilities
- ComboBoxCellItem
- ComboBoxCellType
- CornerFold
- CsvOpenOptions
- CsvParseContext
- CsvParseResult
- CsvSaveOptions
- CustomBorderStyle
- CustomFunction
- DataImportOptions
- DataImportResult
- DataValidationJsonError
- DateInfo
- DeserializationOptions
- DocumentProperties
- Event
- EventArgs
- FindOptions
- FontColorSortField
- FontInfo
- FormulaJsonError
- HyperLinkCellType
- IconSortField
- ImageSaveOptions
- ImageSource
- JsonError
- Margin
- OpenOptionsBase
- PageContentInfo
- PageInfo
- PagePrintedEventArgs
- PagePrintEventArgs
- PagePrintingEventArgs
- PageSettings
- Parameter
- PasteOption
- PdfSaveOptions
- PdfSecurityOptions
- PivotFilterOptions
- Point
- PrintManager
- RadioButtonListCellType
- RangeEventArgs
- RangeFindReplace
- RangeFindReplace.FindReplaceImpl
- RangePartialClasses
- RangePartialClasses.FindReplaceImpl
- RangeTemplateCellType
- Rectangle
- RepeatSetting
- ReplaceOptions
- SaveOptionsBase
- SelectFieldItem
- SerializationOptions
- SheetEventArgs
- SignatureDetails
- Size
- SjsOpenOptions
- SjsSaveOptions
- SortFieldBase
- SpecialCellsValue
- TableStyleFactory
- TextFormatInfo
- Theme
- Themes
- ThemeStorage
- ValueSortField
- WebRequestResult
- Workbook
- WorkbookOptions
- WriteProtection
- XlsmOpenOptions
- XlsmSaveOptions
- XlsxOpenOptions
- XlsxSaveOptions
- XltxOpenOptions
- XltxSaveOptions
-
- 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)
CellInfo
Class CellInfo
java.lang.Object
com.grapecity.documents.excel.CellInfo
Provide some helper functions.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic StringCellIndexToName(int row, int column) Gets cell name(address) according to its row and column indexes.static int[]CellNameToIndex(String name) Gets cell row and column according to its name(address).static StringColumnIndexToName(int index) Gets column name according to column index.static intColumnNameToIndex(String name) Gets column index according to column name.static RectangleGetRangeBoundary(IRange range) Gets the position and size (in pixels) of the specified range.static StringRowIndexToName(int index) Gets row name according to row index.static intRowNameToIndex(String name) Gets row index according to row name.
-
Constructor Details
-
CellInfo
public CellInfo()
-
-
Method Details
-
RowIndexToName
Gets row name according to row index.- Parameters:
index- row index- Returns:
- the name of row
-
RowNameToIndex
Gets row index according to row name.- Parameters:
name- row name- Returns:
- the index of row
-
ColumnIndexToName
Gets column name according to column index.- Parameters:
index- column index- Returns:
- the name of column
-
ColumnNameToIndex
Gets column index according to column name.- Parameters:
name- column name- Returns:
- the index of column
-
CellIndexToName
Gets cell name(address) according to its row and column indexes.- Parameters:
row- row indexcolumn- column index- Returns:
- the address of cell
-
CellNameToIndex
Gets cell row and column according to its name(address).- Parameters:
name- cell name- Returns:
- a array containing the converted row and column index
-
GetRangeBoundary
Gets the position and size (in pixels) of the specified range.- Parameters:
range- The range object- Returns:
- a rectangle containing the position and size of the range
-