Visible

ShadowFormat.Visible property

RestituisceVERO se la formattazione applicata a questa istanza è visibile.

public bool Visible { get; }

Osservazioni

A differenzaClear , assegnandofalso a Visibile non cancella la formattazione, nasconde solo l’effetto forma.

Esempi

Mostra come utilizzare la formattazione dell’ombra per la forma.

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();

Guarda anche