| Name | Type | Description |
|---|---|---|
| Left |
Double
|
|
| Bottom |
Double
|
|
| Text |
String
|
|
| LanguageID | Specifies the language. |
|
| CharSet | {cdrCharSetMixed|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 p As Page For Each p In ActiveDocument.Pages p.ActiveLayer.CreateArtisticText 0, 0, "page: " & p.Index, _ cdrEnglishUS, , "Arial", 6, cdrTrue, cdrTrue, , cdrLeftAlignment Next p End Sub