Range.Information Property (Word)
Returns information about the specified range. Read-only Variant.
Syntax
expression .Information(Type)
expression Required. A variable that represents a Range object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Type |
Required |
WdInformation |
The information type. |
Example
If the tenth word is in a table, this example selects the table.
If ActiveDocument.Words(10).Information(wdWithInTable) Then _
ActiveDocument.Words(10).Tables(1).Select