| Name | Type | Description |
|---|---|---|
| OldText |
String
|
|
| NewText |
String
|
|
| CaseSensitive |
Boolean
|
|
| ReplaceSelectedOnly |
Boolean
|
Specifies whether only the selected text is to be replaced with the TextReplace method. |
Sub Test() ActiveLayer.CreateArtisticText 0, 0, "Text1" ActiveLayer.CreateArtisticText 0, 3, "Some Sentence." ActiveLayer.CreateArtisticText 0, 5, "Word" ActivePage.TextReplace "Some", "Short", True, False End Sub