In This Topic
Splits a text run into two text runs.
Syntax
'Declaration
Public Sub SplitRunAt( _
ByVal As Integer _
)
'Usage
Dim instance As ImGearPDEText
Dim splitLocation As Integer
instance.SplitRunAt(splitLocation)
public void SplitRunAt(
int
)
public: void SplitRunAt(
int
)
public:
void SplitRunAt(
int
)
Parameters
- splitLocation
- Split location, relative to the text object. The first text run is from
character index 0 up to splitLoc. The second text run is from SplitLoc + 1 to the end of the run.
See Also