CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
string_trimming.h
1
2#ifndef _aspose_drawing_string_trimming_h_
3#define _aspose_drawing_string_trimming_h_
4
5namespace System {
6 namespace Drawing {
8 enum class StringTrimming {
10 None = 0,
12 Character = 1,
14 Word = 2,
18 EllipsisWord = 4,
21 EllipsisPath = 5
22 };
23 }
24}
25
26#endif
StringTrimming
Specifies how characters should be trimmed from a string that does not fit the layout shape.
Definition: string_trimming.h:8
@ Word
Trim to the nearest word.
@ EllipsisPath
The center is removed from trimmed lines and replaced by an ellipsis. Keep as much of the last slash-...
@ Character
Trim to the nearest character.
@ EllipsisCharacter
Trim to the nearest character and insert ellipsis at the end of the string.
@ EllipsisWord
Trim to the nearest word and insert ellipsis at the end of the string.
Definition: db_command.h:9