Control characters often encountered in documents.
Shows how to use control characters.
#include <Aspose.Words.Cpp/ControlChar.h>
Public Member Functions | |
ControlChar ()=delete | |
Static Public Member Functions | |
static String & | Cell () |
End of a table cell or end of a table row character: "\x0007" or "\a". More... | |
static String & | ColumnBreak () |
End of column character: "\x000e". More... | |
static String & | Cr () |
Carriage return character: "\x000d" or "\r". Same as ParagraphBreak. More... | |
static String & | CrLf () |
Carriage return followed by line feed character: "\x000d\x000a" or "\r\n". Not used as such in Microsoft Word documents, but commonly used in text files for paragraph breaks. More... | |
static String & | Lf () |
Line feed character: "\x000a" or "\n". Same as LineFeed. More... | |
static String & | LineBreak () |
Line break character: "\x000b" or "\v". More... | |
static String & | LineFeed () |
Line feed character: "\x000a" or "\n". Same as Lf. More... | |
static String & | NonBreakingSpace () |
Non-breaking space character: "\x00a0". More... | |
static String & | PageBreak () |
Page break character: "\x000c" or "\f". Note it has the same value as SectionBreak. More... | |
static String & | ParagraphBreak () |
End of paragraph character: "\x000d" or "\r". Same as Cr More... | |
static String & | SectionBreak () |
End of section character: "\x000c" or "\f". Note it has the same value as PageBreak. More... | |
static String & | Tab () |
Tab character: "\x0009" or "\t". More... | |
Static Public Attributes | |
static constexpr char16_t | CellChar = (char16_t)7 |
End of a table cell or end of a table row character: (char)7 or "\a". More... | |
static constexpr char16_t | ColumnBreakChar = (char16_t)14 |
End of column character: (char)14. More... | |
static constexpr char16_t | DefaultTextInputChar = u'\x2002' |
This is the "o" character used as a default value in text input form fields. More... | |
static constexpr char16_t | FieldEndChar = (char16_t)21 |
End of MS Word field character: (char)21. More... | |
static constexpr char16_t | FieldSeparatorChar = (char16_t)20 |
Field separator character separates field code from field value. Optional in some fields. Value: (char)20. More... | |
static constexpr char16_t | FieldStartChar = (char16_t)19 |
Start of MS Word field character: (char)19. More... | |
static constexpr char16_t | LineBreakChar = (char16_t)11 |
Line break character: (char)11 or "\v". More... | |
static constexpr char16_t | LineFeedChar = (char16_t)10 |
Line feed character: (char)10 or "\n". More... | |
static constexpr char16_t | NonBreakingHyphenChar = (char16_t)30 |
Nonbreaking Hyphen in Microsoft Word is (char)30. More... | |
static constexpr char16_t | NonBreakingSpaceChar = u'\x00a0' |
Non-breaking space character: (char)160. More... | |
static constexpr char16_t | OptionalHyphenChar = (char16_t)31 |
Optional Hyphen in Microsoft Word is (char)31. More... | |
static constexpr char16_t | PageBreakChar = (char16_t)12 |
Page break character: (char)12 or "\f". More... | |
static constexpr char16_t | ParagraphBreakChar = (char16_t)13 |
End of paragraph character: (char)13 or "\r". More... | |
static constexpr char16_t | SectionBreakChar = (char16_t)12 |
End of section character: (char)12 or "\f". More... | |
static constexpr char16_t | SpaceChar = (char16_t)32 |
Space character: (char)32. More... | |
static constexpr char16_t | TabChar = (char16_t)9 |
Tab character: (char)9 or "\t". More... | |
|
delete |
|
static |
End of a table cell or end of a table row character: "\x0007" or "\a".
Shows how to add various control characters to a document.
|
static |
End of column character: "\x000e".
Shows how to add various control characters to a document.
|
static |
Carriage return character: "\x000d" or "\r". Same as ParagraphBreak.
Shows how to use control characters.
|
static |
Carriage return followed by line feed character: "\x000d\x000a" or "\r\n". Not used as such in Microsoft Word documents, but commonly used in text files for paragraph breaks.
Shows how to add various control characters to a document.
|
static |
Line feed character: "\x000a" or "\n". Same as LineFeed.
Shows how to add various control characters to a document.
|
static |
Line break character: "\x000b" or "\v".
Shows how to add various control characters to a document.
|
static |
Line feed character: "\x000a" or "\n". Same as Lf.
Shows how to add various control characters to a document.
|
static |
Non-breaking space character: "\x00a0".
Shows how to add various control characters to a document.
|
static |
Page break character: "\x000c" or "\f". Note it has the same value as SectionBreak.
Shows how to add various control characters to a document.
|
static |
End of paragraph character: "\x000d" or "\r". Same as Cr
Shows how to add various control characters to a document.
|
static |
End of section character: "\x000c" or "\f". Note it has the same value as PageBreak.
Shows how to add various control characters to a document.
|
static |
Tab character: "\x0009" or "\t".
Shows how to set a custom interval for tab stop positions.
|
staticconstexpr |
End of a table cell or end of a table row character: (char)7 or "\a".
Shows how to add various control characters to a document.
|
staticconstexpr |
End of column character: (char)14.
Shows how to add various control characters to a document.
|
staticconstexpr |
This is the "o" character used as a default value in text input form fields.
Shows how to add various control characters to a document.
|
staticconstexpr |
End of MS Word field character: (char)21.
Shows how to add various control characters to a document.
|
staticconstexpr |
Field separator character separates field code from field value. Optional in some fields. Value: (char)20.
Shows how to add various control characters to a document.
|
staticconstexpr |
Start of MS Word field character: (char)19.
Shows how to add various control characters to a document.
|
staticconstexpr |
Line break character: (char)11 or "\v".
Shows how to add various control characters to a document.
|
staticconstexpr |
Line feed character: (char)10 or "\n".
Shows how to add various control characters to a document.
|
staticconstexpr |
Nonbreaking Hyphen in Microsoft Word is (char)30.
Nonbreaking Hyphen in Microsoft Word does not correspond to the Unicode character U+2011 non-breaking hyphen but instead represents internal information that tells Microsoft Word to display a hyphen and not to break a line.
Useful info: http://www.cs.tut.fi/~jkorpela/dashes.html#linebreaks.
Shows how to add various control characters to a document.
|
staticconstexpr |
Non-breaking space character: (char)160.
Shows how to add various control characters to a document.
|
staticconstexpr |
Optional Hyphen in Microsoft Word is (char)31.
Optional Hyphen in Microsoft Word does not correspond to the Unicode character U+00AD soft hyphen. Instead, it inserts internal information that tells Word about a possible hyphenation point.
Shows how to add various control characters to a document.
|
staticconstexpr |
Page break character: (char)12 or "\f".
Shows how to add various control characters to a document.
|
staticconstexpr |
End of paragraph character: (char)13 or "\r".
Shows how to add various control characters to a document.
|
staticconstexpr |
End of section character: (char)12 or "\f".
Shows how to add various control characters to a document.
|
staticconstexpr |
Space character: (char)32.
Shows how to add various control characters to a document.
|
staticconstexpr |
Tab character: (char)9 or "\t".
Shows how to set a custom interval for tab stop positions.