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

ru.curs.adocwrapper.inline.text.ItalicText.kt Maven / Gradle / Ivy

The newest version!
package ru.curs.adocwrapper.inline.text

import ru.curs.adocwrapper.inline.InlineContentType
import ru.curs.adocwrapper.inline.UnsafeInline

class ItalicText(string: String) : UnsafeInline(string) {
    init {
        this.text = "__${text}__"
        this.type = InlineContentType.ItalicText
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy