com.grapecity.documents.excel Package / IRange Interface / getAddress Method / getAddress(boolean,boolean,ReferenceStyle,IRange) Method
True to return the row part of the reference as an absolute reference.The default value is true.
True to return the column part of the reference as an absolute reference.The default value is true.
The reference style. The default value is A1.
If RowAbsolute and ColumnAbsolute are false,and ReferenceStyle is R1C1, defines a starting point for the relative reference. The default reference is $A$1.
In This Topic
getAddress(boolean,boolean,ReferenceStyle,IRange) Method
In This Topic
Returns a String value that represents the range reference.
Syntax
java.lang.String getAddress( 
   boolean rowAbsolute,
   boolean columnAbsolute,
   ReferenceStyle referenceStyle,
   IRange relativeTo
)

Parameters

rowAbsolute
True to return the row part of the reference as an absolute reference.The default value is true.
columnAbsolute
True to return the column part of the reference as an absolute reference.The default value is true.
referenceStyle
The reference style. The default value is A1.
relativeTo
If RowAbsolute and ColumnAbsolute are false,and ReferenceStyle is R1C1, defines a starting point for the relative reference. The default reference is $A$1.
See Also