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

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

package com.vladsch.flexmark.docx.converter.util;

import org.docx4j.wml.RPr;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy