Word.SelectionInsertSymbolOptions interface
Represents the options for the Selection.insertSymbol method.
Remarks
Properties
| bias | If provided, specifies the font bias for symbols. This argument is useful for setting the correct font bias for East Asian characters. The default value is |
| font | If provided, specifies the name of the font that contains the symbol. |
| unicode | If provided, specifies whether the character is Unicode. |
Property Details
bias
If provided, specifies the font bias for symbols. This argument is useful for setting the correct font bias for East Asian characters. The default value is default.
bias?: Word.FontBias | "Standard" | "FarEast" | "NoSpecified";
Property Value
Word.FontBias | "Standard" | "FarEast" | "NoSpecified"
Remarks
font
If provided, specifies the name of the font that contains the symbol.
font?: string;
Property Value
string
Remarks
unicode
If provided, specifies whether the character is Unicode. true to insert the Unicode character specified by the characterNumber property when the Selection.insertSymbol method is called; false to instead insert the ANSI character specified by the characterNumber property. The default value is false.
unicode?: boolean;
Property Value
boolean