Application.DefaultTableSeparator Property

Word Developer Reference

Returns or sets the single character used to separate text into cells when text is converted to a table. Read/write String.

Syntax

expression.DefaultTableSeparator

expression   A variable that represents an Application object.

Remarks

The value of the DefaultTableSeparator property is used if the Separator argument is omitted from the ConvertToTable method or the Range or Selection object.

Example

This example changes the default table separator character.

Visual Basic for Applications
  Application.DefaultTableSeparator = "%"

See Also