Share via


Range.Information Property

Word Developer Reference

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.

Visual Basic for Applications
  If ActiveDocument.Words(10).Information(wdWithInTable) Then _
    ActiveDocument.Words(10).Tables(1).Select

See Also