SetBreakStringA
Text
Descrição
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
Define a string a usar para marcar quebras de linha. Essa string permite dividir o texto ao usar as
funções *WrappedText. A breakstring por padrão é definida como CR/LF, ou seja, '#13#10' em Delphi
Sintaxe
Delphi
Function DLSetBreakStringA(InstanceID: Integer; NewBreakString: PAnsiChar): Integer;
DLL
int DLSetBreakStringA(int InstanceID, const char * NewBreakString);
Parâmetros
| NewBreakString | The string of characters to use as a break character, for example Chr(13) + Chr(10) |
|---|