Range Property (WorkbookTable)
In This Topic
Gets or sets range on the relevant sheet that the table occupies expressed using A1 style referencing. i.e. "A1:D4".
Syntax
'Declaration
Public Property Range As System.String
'Usage
Dim instance As WorkbookTable
Dim value As System.String
instance.Range = value
value = instance.Range
public System.string Range {get; set;}
public read-write property Range: System.String;
public function get,set Range : System.String
public: __property System.string* get_Range();
public: __property void set_Range(
System.string* value
);
public:
property System.String^ Range {
System.String^ get();
void set ( System.String^ value);
}
See Also