ParagraphFormat.ListBulletFontSize property (Publisher)

Sets or retrieves a Single that represents the list bullet font size from the specified paragraphs. Read/write.

Syntax

expression.ListBulletFontSize

expression A variable that represents a ParagraphFormat object.

Return value

Single

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 ListFontSize is set to 24 and the ListBulletFontName is set to Verdana.

Dim objParaForm As ParagraphFormat 
 
Set objParaForm = ActiveDocument.Pages(1).Shapes(1) _ 
.TextFrame.TextRange.ParagraphFormat 
 
With objParaForm 
 If .ListType = pbListTypeBullet Then 
 .ListBulletFontSize = 24 
 .ListBulletFontName = "Verdana" 
 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.