In This Topic
Gets the worksheet reference of the specified address.
Syntax
'Declaration
Public Shared Function GetWorksheetPlace( _
ByVal As String, _
ByVal As IWorksheet, _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As Boolean, _
Optional ByVal As Nullable(Of Boolean) _
) As WorksheetReference
'Usage
Dim address As String
Dim worksheet As IWorksheet
Dim row As Integer
Dim column As Integer
Dim navigate As Boolean
Dim isA1Reference As Nullable(Of Boolean)
Dim value As WorksheetReference
value = UIHelper.GetWorksheetPlace(address, worksheet, row, column, navigate, isA1Reference)
Parameters
- address
- A string value indicates the worksheet place.
- worksheet
- The context worksheet.
- row
- An integer value indicates the context row index.
- column
- An integer value indicates the context column index.
- navigate
true
if the function validate for navigating; otherwise, false
for accessing.- isA1Reference
- A boolean value indicates the notation-reference style of the address.
See Also