Share via


Font.NameOther Property

Returns or sets the font used for characters whose character set numbers are greater than 127. Read/write.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
Property NameOther As String
    Get
    Set
'Usage
Dim instance As Font
Dim value As String

value = instance.NameOther

instance.NameOther = value
string NameOther { get; set; }

Property Value

Type: System.String
String

Remarks

In the U.S. English version of Microsoft Office PowerPoint, this property is read-only and the default value is Times New Roman. Use the Replace(String, String) method to change a font in a presentation. The NameOther property setting is the same as the NameASCII property setting except when the NameASCII property is set to "Use FE Font."

Examples

This example sets the font used for characters whose character set numbers are greater than 127, for the first member of the Fonts collection.

ActivePresentation.Fonts(1).NameOther= "Tahoma"

See Also

Reference

Font Interface

Font Members

Microsoft.Office.Interop.PowerPoint Namespace