ParagraphFormat.ListBulletFontName property (Publisher)

Sets or retrieves a String representing the list bullet font name from the specified paragraphs. Read/write.

Syntax

expression.ListBulletFontName

expression A variable that represents a ParagraphFormat object.

Return value

String

Remarks

Returns an "Access Denied" message if the list is not a bulleted list.

Example

This example tests to see if the list type is a bulleted list. If it is, the ListBulletFontName is set to Verdana and the ListFontSize is set to 24.

Dim objParaForm As ParagraphFormat 
 
Set objParaForm = ActiveDocument.Pages(1).Shapes(1) _ 
.TextFrame.TextRange.ParagraphFormat 
 
With objParaForm 
 If .ListType = pbListTypeBullet Then 
 .ListBulletFontName = "Verdana" 
 .ListBulletFontSize = 24 
 End If 
End With 

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.