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

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

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

import org.docx4j.wml.RPr;

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

    @Override
    public void getRPr(RPr rPr) {
        super.getRPr(rPr);
        //rPr.setStrike(docx.getFactory().createBooleanDefaultTrue());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy