SetBreakStringA
Text
Описание
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
Задаёт строку-маркер разрыва строки; она позволяет разбивать текст при использовании
-функции семейства *WrappedText. По умолчанию разделитель переноса — CR/LF, то есть '#13#10' в Delphi
Синтаксис
Delphi
Function DLSetBreakStringA(InstanceID: Integer; NewBreakString: PAnsiChar): Integer;
DLL
int DLSetBreakStringA(int InstanceID, const char * NewBreakString);
Параметры
| NewBreakString | Строка символов-разрывов, например Chr(13) + Chr(10) |
|---|