GrapeCity.Documents.Excel Namespace / IRange Interface / GetAddress Method
True to return the row part of the reference as an absolute reference.
True to return the column part of the reference as an absolute reference.
The reference style.
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 Method
In This Topic
Returns a System.String value that represents the range reference. If all parameters are omitted, the return value is equal to the Address property.
Syntax
System.string GetAddress( 
   System.bool rowAbsolute,
   System.bool columnAbsolute,
   ReferenceStyle referenceStyle,
   IRange relativeTo
)

Parameters

rowAbsolute
True to return the row part of the reference as an absolute reference.
columnAbsolute
True to return the column part of the reference as an absolute reference.
referenceStyle
The reference style.
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