Sets a custom name external range expression to the workbook.
Syntax
'Declaration
Public Overloads Sub SetCustomName( _
ByVal As String, _
ByVal As Worksheet, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Integer, _
ByVal columnCount As Integer _
)
'Usage
Dim instance As GcSpreadSheet
Dim name As String
Dim worksheet As Worksheet
Dim row As Integer
Dim column As Integer
Dim rowCount As Integer
Dim columnCount As Integer
instance.SetCustomName(name, worksheet, row, column, rowCount, columnCount)
public void SetCustomName(
string ,
Worksheet ,
int ,
int column,
int ,
int columnCount
)
Parameters
- name
- The custom name.
- worksheet
- The worksheet to create the expression.
- row
- The row index.
- column
- The column index.
- rowCount
- The row count.
- columnCount
- The column count.
See Also