Void InsertText ( const Text &other, ulong position )

From FM Plugin Wikipedia
Jump to: navigation, search

Inserts text into an existing string

fmx::TextAutoPtr        origText;
fmx::TextAutoPtr        newText;


origText->Assign( "This is the  text" );

newText->Assign( "original" );

origText->InsertText( *newText, 13 );


Result is "This is the original text"