Locates a field that matches the specified field length and field attributes, starting from the specified row and column.
Syntax
|
---|
object.FindField4(
ByVal startRow As Long,
ByVal startColumn As Long,
ByVal fieldLength As Long,
ByVal fieldtype As FieldType,
ByVal findoption As FindOption
) As HostField
|
Parameters
- startRow
- startColumn
- fieldLength
- fieldtype
- findoption
- Find direction that specifies the direction to search.
Return Value
A host field that matches the specified field length and attributes, or Nothing if it is not found.
Exceptions
Exception | Description |
System.ArgumentOutOfRangeException |
This exception is thrown if the startRow or startColumn parameters are outside the range of valid values: (1 to Rows) or (1 to Columns).
|
See Also