ReferredArea Class
Contents
[
Hide
]ReferredArea class
Represents a referred area by the formula.
type ReferredArea struct {
ptr unsafe.Pointer
}
Constructors
| Method | Description |
|---|
Methods
| Method | Description |
|---|---|
| IsNull | Checks whether the implementation object is nullptr. |
| IsExternalLink | Indicates whether this is an external link. |
| GetExternalFileName | Get the external file name if this is an external reference. |
| GetSheetName | Indicates which sheet this reference is in. |
| GetSheetNames | Names of all the worksheets this instance references to. |
| IsEntireRow | Indicates whether this area contains all columns(entire row). |
| IsEntireColumn | Indicates whether this area contains all rows(entire column). |
| IsArea | Indicates whether this is an area. |
| GetEndColumn | The end column of the area. |
| GetStartColumn | The start column of the area. |
| GetEndRow | The end row of the area. |
| GetStartRow | The start row of the area. |
| GetValues | Gets cell values in this area. |
| GetValues_Bool | Gets cell values in this area. |
| GetValue_Int_Int | Gets cell value with given offset from the top-left of this area. |
| GetValue_Int_Int_Bool | Gets cell value with given offset from the top-left of this area. |
| ToString | Returns the reference address of this area.Generally it is the address of the reference which may be used in formula, such as “Sheet1!A1:C3”. |