| Name | Type | Description |
|---|---|---|
| Left |
Double
|
|
| Top |
Double
|
|
| Right |
Double
|
|
| Bottom |
Double
|
|
| Text |
String
|
|
| LanguageID | Specifies the language. |
|
| CharSet | Specifies the character set. |
|
| Font |
String
|
|
| Size |
Single
|
Specifies the font size. |
| Bold | Specifies whether to apply boldface. |
|
| Italic | Specifies whether to apply italics. |
|
| Underline | Specifies an underline to apply. |
|
| Alignment | Specifies the alignment. |
Sub Test() Dim s As Shape Set s = ActiveLayer.CreateParagraphText(0, 0, 4, 4, "Paragraph Text", , , _ "Times New Roman", 24, cdrTrue, cdrTrue, , cdrCenterAlignment) End Sub