CharParamsFlags flags
The CharParamsFlags flags are used as a mask in some methods of the Text object. The mask is an OR combination of these flags values and define what properties of the CharParams object should be taken into account in these methods. For the IText::SetCharParams method they define what character properties should be set, and for the IText::NextGroup method they define parameters separating a group of symbols.
module CharParamsFlags { const int CFL_EditedByUser = 0x00000002; const int CFL_EditedByRules = 0x00000004; const int CFL_Suspicious = 0x00000008; const int CFL_NeedsVerification = 0x00000010; const int CFL_NeedsGroupVerification = 0x00000020; const int CFL_Rectangle = 0x00000040; const int CFL_LanguageId = 0x00000080; const int CFL_PageID = 0x00000400; };
Elements
Flag name | Description |
---|---|
CFL_EditedByUser | The ICharParams::IsEditedByUser property should be taken into account. |
CFL_EditedByRules | The ICharParams::IsEditedByRules property should be taken into account. |
CFL_Suspicious | The ICharParams::IsSuspicious property should be taken into account. |
CFL_NeedsVerification | The ICharParams::NeedsVerification property should be taken into account. |
CFL_NeedsGroupVerification | The ICharParams::NeedsGroupVerification property should be taken into account. |
CFL_Rectangle | The ICharParams::Rectangle property should be taken into account. |
CFL_LanguageId | The ICharParams::LanguageId property should be taken into account. |
CFL_PageID | The ICharParams::PageId property should be taken into account. |
Used in
15.08.2023 13:19:30