Gets the replacement text.
Copy Code
|
|
---|---|
AT_ERRCOUNT ACCUAPI IG_REC_redactor_replacement_text_get( const HIG_REC_REDACTOR higRecRedactor, AT_WCHAR* const replacement_text ); |
Name | Type | Description |
---|---|---|
higRecRedactor | const HIG_REC_REDACTOR | The handle to a redactor instance. |
replacement_text | AT_WCHAR* const | The current replacement text. |
This function does not process image pixels.
Copy Code
|
|
---|---|
AT_ERRCOUNT errCount = 0 ; HIG_REC_REDACTOR higRecRedactor = 0 ; AT_WCHAR replacement = 0 ; IG_REC_redactor_create( &higRecRedactor ) ; errCount = IG_REC_redactor_replacement_text_get ( higRecRedactor, &replacement ) ; IG_REC_redactor_delete( higRecRedactor ) ; |
Default value is vertical bar ("|", U+007C).