ParagraphStyle

Overview

ParagraphStyle is a class in Aspose.Note FOSS for Python.

ParagraphStyle.Default returns a ParagraphStyle instance initialized with default formatting values.

This class provides 2 methods for working with ParagraphStyle objects in Go programs. Available methods include: Default, __init__. All exported members are accessible to any Go application after adding the package via go get github.com/aspose-pdf-foss/aspose-pdf-foss-for-go. Properties: FontColor, FontName, FontSize, FontStyle, Highlight, IsBold, and 5 more.

Properties

NameTypeAccessDescription
FontStyleintReadGets the font style.
FontName``ReadGets the font name.
FontSize``ReadGets the font size.
FontColor``ReadGets the font color.
Highlight``ReadGets the highlight.
IsBold``ReadGets the is bold.
IsItalic``ReadGets the is italic.
IsUnderline``ReadGets the is underline.
IsStrikethrough``ReadGets the is strikethrough.
IsSuperscript``ReadGets the is superscript.
IsSubscript``ReadGets the is subscript.

Methods

SignatureDescription
__init__(FontName: str | None, FontSize: float | None, FontColor: int | None, Highlight: int | None, IsBold: bool, IsItalic: bool, IsUnderline: bool, IsStrikethrough: bool, IsSuperscript: bool, IsSubscript: bool)
Default()ParagraphStyleReturns a ParagraphStyle instance initialized with default formatting values

See Also