BodyProperties.FromWordArt Property

Definition

From WordArt

Represents the following attribute in the schema: fromWordArt

[DocumentFormat.OpenXml.SchemaAttr(0, "fromWordArt")]
public DocumentFormat.OpenXml.BooleanValue FromWordArt { get; set; }
public DocumentFormat.OpenXml.BooleanValue FromWordArt { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(0, "fromWordArt")]
public DocumentFormat.OpenXml.BooleanValue? FromWordArt { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("fromWordArt")]
public DocumentFormat.OpenXml.BooleanValue? FromWordArt { get; set; }
public DocumentFormat.OpenXml.BooleanValue? FromWordArt { get; set; }
member this.FromWordArt : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr(0, "fromWordArt")>]
member this.FromWordArt : DocumentFormat.OpenXml.BooleanValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr("fromWordArt")>]
member this.FromWordArt : DocumentFormat.OpenXml.BooleanValue with get, set
Public Property FromWordArt As BooleanValue

Property Value

Returns BooleanValue.

Attributes

Remarks

The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.

Specifies that text within this textbox is converted text from a WordArt object. This is more of a backwards compatibility attribute that is useful to the application from a tracking perspective. WordArt was the former way to apply text effects and therefore this attribute is useful in document conversion scenarios. If this attribute is omitted, then a value of 0, meaning off, is implied.

Consider the following DrawingML:

<p:txBody>  
  <a:bodyPr wrap="none" fromWordArt="1" …   
  />  
  …  
</p:txBody>  

Because of the presence of the fromWordArt attribute the text within this shape can be mapped back to the corresponding WordArt during document conversion.

The possible values for this attribute are defined by the XML Schema boolean data type.

Applies to