enum TranslateCaps { Cap_ReceiveHtml = 0x1, Cap_StripTrailingNewLines = 0x2, Cap_BidirectionalText = 0x4 };
TranslateCaps is an enumeration type defining the translation capabilities of the Translator object. In general, capability flags are used to determine two things:
Members |
Description |
Cap_ReceiveHtml = 0x1 |
Specifies that Translate key can include Flash-HTML tags. If not specified, translate will only receive stripped text content (default). |
Cap_StripTrailingNewLines = 0x2 |
Forces all trailing new-line symbols to be stripped before the text is passed to Translate. This is important if the original text was in HTML format, since it can have a trailing paragraph tag that is turned into a new line. |
Cap_BidirectionalText = 0x4 |
Enables support for bidirectional text. Method OnBidirectionalText will be called. |
GFx_Loader.h