Visible

ShadowFormat.Visible property

Retoursvrai si la mise en forme appliquée à cette instance est visible.

public bool Visible { get; }

Remarques

ContrairementClear , assignantFAUX to Visible n’efface pas le formatage, il masque uniquement l’effet de forme.

Exemples

Montre comment utiliser un formatage d’ombre pour la forme.

Document doc = new Document(MyDir + "Shape stroke pattern border.docx");
Shape shape = (Shape)doc.GetChildNodes(NodeType.Shape, true)[0];

if (shape.ShadowFormat.Visible && shape.ShadowFormat.Type == ShadowType.Shadow2)                
    shape.ShadowFormat.Type = ShadowType.Shadow7;

if (shape.ShadowFormat.Type == ShadowType.ShadowMixed)            
    shape.ShadowFormat.Clear();

Voir également