Visible

ShadowFormat.Visible property

Gibt zurückWAHR wenn die auf diese Instanz angewendete Formatierung sichtbar ist.

public bool Visible { get; }

Bemerkungen

AndersClear , zuweisenFALSCH auf „Sichtbar“ löscht die Formatierung nicht, es verbirgt nur den Formeffekt.

Beispiele

Zeigt, wie mit einer Schattenformatierung für die Form gearbeitet wird.

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

Siehe auch