- General Information
- Connecting Third-party Systems
- crossConnect for content systems
- crossConnect for External Editing
- Purpose and usage
- Requirements
- Implementation
- Across XLIFF format
- Across-specific Extensions
- <xliff> Element Attributes
- <file> Element Extensions
- <trans-unit> Element Extension
- Paragraph States
- Paragraph State Flags
- <source> and <target> Element Content
- <bpt> Element Attributes
- <ph> Element Attributes
- <x> Element Attributes
- Across-specific Properties
- Analysis Results
- Sample Files
- Across XLIFF - import, export and segmentation
- Context information
- Exporting best matches in Across XLIFF
- Hyperlinks to XLIFF
- Secure file handling with C#
- Secure file handling with JAVA
- Workflow and vendor configuration
- Sample code - Integrated solution
- Across XLIFF format
- Generic File Connector
- Display Texts
- APIs
- APIs - Technology
- crossTank API v1
- crossTank API v2
- crossTerm API v1
- crossTerm API v2
- crossAPI SI
- Requirements
- Function Return Types
- crossAPI SI and Java
- List of Objects in crossAPI SI
- Sample - transferring checkout files via FileManager
- Sample - VBS
- Text Preprocessing API
Children of paragraphStyles and characterStyles
Style element of paragraphStyles
Description | Child elements | No. of occurrences |
<style id: NonEmptyString> Content: (xdata?, typeface, size, italic?, bold?, underline?, verticalAlign?) </style> | typeface size italic, bold, underline verticalAlign | One or more |
Note that the attribute id value should be unique because it's a key value.
Please note that typeface should be filled with the exact typeface name and not with a font family name. The only exception is when a font family 'ABC' contains the font named 'ABC Regular'. In this case you can put just 'ABC' here, and it will be automatically treated as 'ABC Regular'.
For instance: 'Arial' font family contains a typeface 'Arial Regular', thus one can specify just 'Arial' and it will be OK. But if you delete the 'Arial Regular' typeface, then one will have to put here 'Arial Black', 'Arial Bold' or other specific typefaces.
Example:
<styleid="f2"><typeface>Arial</typeface><size>8.5</size><italic>true</italic><bold>true</bold><underline>true</underline><verticalAlign>superscript</verticalAlign></style>
Style element of characterStyles
Description | Child elements | No. of occurrence |
<style id: NonEmptyString> Content: (xdata?, typeface?, size?, italic?, bold?, underline?, verticalAlign?) </style> | typeface size italic, bold, underline verticalAlign | Unlimited |
Example:
<styleid="bold"><bold>true</bold><verticalAlign>baseline</verticalAlign></style>
italic, bold,underline and verticalAlign emelent
Description | Parent element | No. of occurrences |
<italic> Content: (true|false|0|1):false) </italic> | style (paragraghStyle or characterStyle) | None or once |
<bold> Content: (true|false|0|1):false) </bold> | ||
<underline> Content: (true|false|0|1):false) </underline> | ||
<verticalAlign> Content: (subscript|baseline|superscript):baseline </verticalAlign> | Once |
Example:
<styleid="style1"><typeface>Arial</typeface><size>12.5 pt</size><italic>true</italic><bold>true</bold><underline>true</underline><verticalAlign>subscript</verticalAlign></style>