ThemeFonts
Inheritance: java.lang.Object
All Implemented Interfaces: java.lang.Cloneable
public class ThemeFonts implements Cloneable
Represents a collection of fonts in the font scheme, allowing to specify different fonts for different languages getLatin() / setLatin(java.lang.String), getEastAsian() / setEastAsian(java.lang.String) and getComplexScript() / setComplexScript(java.lang.String).
To learn more, visit the Working with Styles and Themes documentation article.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Methods
Method | Description |
---|---|
getComplexScript() | Specifies font name for ComplexScript characters. |
getEastAsian() | Specifies font name for EastAsian characters. |
getLatin() | Specifies font name for Latin characters. |
setComplexScript(String value) | Specifies font name for ComplexScript characters. |
setEastAsian(String value) | Specifies font name for EastAsian characters. |
setLatin(String value) | Specifies font name for Latin characters. |
getComplexScript()
public String getComplexScript()
Specifies font name for ComplexScript characters.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Returns: java.lang.String - The corresponding java.lang.String value.
getEastAsian()
public String getEastAsian()
Specifies font name for EastAsian characters.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Returns: java.lang.String - The corresponding java.lang.String value.
getLatin()
public String getLatin()
Specifies font name for Latin characters.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Returns: java.lang.String - The corresponding java.lang.String value.
setComplexScript(String value)
public void setComplexScript(String value)
Specifies font name for ComplexScript characters.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The corresponding java.lang.String value. |
setEastAsian(String value)
public void setEastAsian(String value)
Specifies font name for EastAsian characters.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The corresponding java.lang.String value. |
setLatin(String value)
public void setLatin(String value)
Specifies font name for Latin characters.
Examples:
Shows how to set custom colors and fonts for themes.
Document doc = new Document(getMyDir() + "Theme colors.docx");
// The "Theme" object gives us access to the document theme, a source of default fonts and colors.
Theme theme = doc.getTheme();
// Some styles, such as "Heading 1" and "Subtitle", will inherit these fonts.
theme.getMajorFonts().setLatin("Courier New");
theme.getMinorFonts().setLatin("Agency FB");
// Other languages may also have their custom fonts in this theme.
Assert.assertEquals(theme.getMajorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMajorFonts().getEastAsian(), "");
Assert.assertEquals(theme.getMinorFonts().getComplexScript(), "");
Assert.assertEquals(theme.getMinorFonts().getEastAsian(), "");
// The "Colors" property contains the color palette from Microsoft Word,
// which appears when changing shading or font color.
// Apply custom colors to the color palette so we have easy access to them in Microsoft Word
// when we, for example, change the font color via "Home" -> "Font" -> "Font Color",
// or insert a shape, and then set a color for it via "Shape Format" -> "Shape Styles".
ThemeColors colors = theme.getColors();
colors.setDark1(Color.BLUE);
colors.setLight1(Color.GREEN);
colors.setDark2(Color.MAGENTA);
colors.setLight2(Color.BLACK);
colors.setAccent1(Color.RED);
colors.setAccent2(Color.PINK);
colors.setAccent3(Color.YELLOW);
colors.setAccent4(Color.orange);
colors.setAccent5(Color.cyan);
colors.setAccent6(Color.darkGray);
// Apply custom colors to hyperlinks in their clicked and un-clicked states.
colors.setHyperlink(Color.WHITE);
colors.setFollowedHyperlink(Color.lightGray);
doc.save(getArtifactsDir() + "Themes.CustomColorsAndFonts.docx");
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The corresponding java.lang.String value. |