IsDecorative

ShapeBase.IsDecorative property

Ottiene o imposta il flag che specifica se la forma è decorativa nel documento.

public bool IsDecorative { get; set; }

Osservazioni

Nota che la forma non è vuotaAlternativeText non può essere decorativo.

Esempi

Mostra come impostare la forma come decorativa.

Document doc = new Document(MyDir + "Decorative shapes.docx");

Shape shape = (Shape) doc.GetChildNodes(NodeType.Shape, true)[0];
Assert.True(shape.IsDecorative);

// Se "AlternativeText" non è vuoto, la forma non può essere decorativa.
// Ecco perché il nostro valore è cambiato in 'false'.
shape.AlternativeText = "Alternative text.";
Assert.False(shape.IsDecorative);

DocumentBuilder builder = new DocumentBuilder(doc);

builder.MoveToDocumentEnd();
// Crea una nuova forma come decorativa.
shape = builder.InsertShape(ShapeType.Rectangle, 100, 100);
shape.IsDecorative = true;

doc.Save(ArtifactsDir + "Shape.IsDecorative.docx");

Guarda anche