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

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

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

import org.docx4j.wml.RPr;

public class UnderlineRunFormatProvider extends RunFormatProviderBase {
    public UnderlineRunFormatProvider(final DocxContext docx, boolean noCharacterStyles) {
        super(docx, docx.getRenderingOptions().INS_STYLE, noCharacterStyles, null);
    }

    @Override
    public void getRPr(final RPr rPr) {
        super.getRPr(rPr);
        //U u = docx.getFactory().createU();
        //rPr.setU(u);
        //u.setVal(org.docx4j.wml.UnderlineEnumeration.SINGLE);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy