Visible

ShadowFormat.Visible property

ReturnerarSann om formateringen som tillämpas på den här instansen är synlig.

public bool Visible { get; }

Anmärkningar

Gillar inteClear , tilldelarfalsk to Visible rensar inte formateringen, den döljer bara formeffekten.

Exempel

Visar hur man arbetar med en skuggformatering för formen.

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

Se även