GetStyle
Returns a style by its name.
Parameters:
Name |
Type |
Description |
sStyleName |
string
|
The style name. |
Returns:
- Type
-
ApiStyle
Example
Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oNoSpacingStyle = oDocument.GetStyle("Heading 6");
var oParagraph = oDocument.GetElement(0);
oParagraph.SetStyle(oNoSpacingStyle);
oParagraph.AddText("This is a text in a paragraph styled with the 'Heading 6' style.");
builder.SaveFile("docx", "GetStyle.docx");
builder.CloseFile();
Resulting document