NamedRange::Resize Property
Gets a resized Microsoft.Office.Interop.Excel::Range based on the NamedRange control.
Assembly: Microsoft.Office.Tools.Excel (in Microsoft.Office.Tools.Excel.dll)
Property Value
Type: Microsoft.Office.Tools.Excel::NamedRange_ResizeType^A resized Microsoft.Office.Interop.Excel::Range based on the NamedRange control.
The Resize property is intended to be used with the following parameters.
Parameter | Description |
|---|---|
RowSize | The number of rows in the new range. If this argument is omitted, the number of rows in the range remains the same. |
ColumnSize | The number of columns in the new range. If this argument is omitted, the number of columns in the range remains the same. |
If you attempt to use Resize without specifying any parameters, Resize will get a NamedRange_ResizeType object that is part of the Visual Studio infrastructure and is not intended to be used directly from your code.
For information on optional parameters, see Optional Parameters in Office Solutions.
The following code example creates a NamedRange and then uses the Resize property to get a larger range based on the NamedRange. The code then selects the new range.
This version is for a document-level customization.
This version is for an application-level add-in.