SemiHidden

Style.SemiHidden property

Gets/sets whether the style hides from the Styles gallery and from the Styles task pane.

public bool SemiHidden { get; set; }

Examples

Shows how to prioritize and hide a style.

Document doc = new Document();
Style styleTitle = doc.Styles[StyleIdentifier.Subtitle];

if (styleTitle.Priority == 9)
    styleTitle.Priority = 10;

if (!styleTitle.UnhideWhenUsed)
    styleTitle.UnhideWhenUsed = true;

if (styleTitle.SemiHidden)
    styleTitle.SemiHidden = true;

doc.Save(ArtifactsDir + "Styles.StylePriority.docx");

See Also