Hi,
I have added Textbox into PPT and I want to put there a text with few line - each should be marked by bullet (dot or circle) or by number (like 1, 2).
Example:
1. Some long text
2. Other text etc....
How can I do it?
I have added Textbox into PPT and I want to put there a text with few line - each should be marked by bullet (dot or circle) or by number (like 1, 2).
Example:
1. Some long text
2. Other text etc....
How can I do it?
Code:
activeSlide.Shapes.AddTextbox msoTextOrientationHorizontal, Left:=0, Top:=60, Width:=500, Height:=50
With activeSlide.Shapes(1).TextFrame
.TextRange.Text = ""
.TextRange.Font.Color = RGB(0, 32, 96)
.TextRange.Font.Size = 12
.TextRange.Font.Name = "Arial (Body)"
.WordWrap = msoCTrue
.TextRange.Font.Underline = msoTrue
End With