| Name | Type | Description |
|---|---|---|
| Text |
String
|
|
| CaseSensitive |
Boolean
|
|
| StartIndex |
Long
|
Specifies the first text object in a text range. If the index type is set to word, and the start index is 3, the StartIndex parameter begins the range at the third word in the selected text frame. |
| WrapAround |
Boolean
|
Specifies whether the text follows the path of an object's shape or bounding box. |
| IndexingType | Specifies, through a value of cdrTextIndexingType, the type of text to find. The indexing type can be character, word, or paragraph. |
Sub Test()
Dim s As Shape, n As Long
Set s = ActiveLayer.CreateParagraphText(0, 0, 2, 1, "Lorem Dolor Sit")
n = s.Text.Find("Dolor", False)
If n <> 0 Then s.Text.Characters(n, 0) = "Ipsum "
End Sub