All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vladsch.flexmark.docx.converter.util.ItalicRunFormatProvider Maven / Gradle / Ivy

There is a newer version: 0.64.8
Show newest version
package com.vladsch.flexmark.docx.converter.util;

import org.docx4j.wml.RPr;

public class ItalicRunFormatProvider extends RunFormatProviderBase {
    public ItalicRunFormatProvider(DocxContext docx, boolean noCharacterStyles) {
        super(docx, docx.getRenderingOptions().ITALIC_STYLE, noCharacterStyles, null);
    }

    @Override
    public void getRPr(RPr rPr) {
        super.getRPr(rPr);
        //rPr.setI(docx.getBooleanDefaultTrue());
        //rPr.setICs(docx.getBooleanDefaultTrue());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy