SetBreakStringA
Text
Description
The trailing A denotes the ANSI (char) DLL entry point; the ActiveX/COM surface exposes only the Unicode form. Behaviour is identical to SetBreakString and string arguments are interpreted using the current SetAnsiMode code page
Sets the string to use to mark line breaks. This string allows text to be split when using the
*WrappedText functions. The breakstring by default is set to CR/LF. ie. '#13#10' in Delphi
Syntax
Delphi
Function DLSetBreakStringA(InstanceID: Integer; NewBreakString: PAnsiChar): Integer;
DLL
int DLSetBreakStringA(int InstanceID, const char * NewBreakString);
Parameters
| NewBreakString | The string of characters to use as a break character, for example Chr(13) + Chr(10) |
|---|