DeletedFieldCode Class

Deleted Field Code.When the object is serialized out as xml, its qualified name is w:delInstrText.

Inheritance Hierarchy

System.Object
  DocumentFormat.OpenXml.OpenXmlElement
    DocumentFormat.OpenXml.OpenXmlLeafElement
      DocumentFormat.OpenXml.OpenXmlLeafTextElement
        DocumentFormat.OpenXml.Wordprocessing.TextType
          DocumentFormat.OpenXml.Wordprocessing.DeletedFieldCode

Namespace:  DocumentFormat.OpenXml.Wordprocessing
Assembly:  DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)

Syntax

'Declaration
Public Class DeletedFieldCode _
    Inherits TextType
'Usage
Dim instance As DeletedFieldCode
public class DeletedFieldCode : TextType

Remarks

[ISO/IEC 29500-1 1st Edition]

17.16.8 delInstrText (Deleted Field Code)

This element specifies that this run contains deleted field codes (§17.16.5) within a complex field in the document. The delInstrText element shall be used for all runs containing field codes which are part of a region of text that is contained in a deleted region using the del element (§17.13.5.14).

If this element is not contained within a del element, then the document is non-conformant. If this element is contained within a run which is not part of a complex field's field codes, then it should be handled as regular deleted text.

[Example: Consider a complex field within a WordprocessingML document which was changed from a text box form field to a checkbox form field with revision tracking enabled. This field would therefore be represented as follows:

<w:fldChar w:fldCharType="begin" />
<w:ins>
<w:r>
<w:instrText>FORMCHECKBOX</w:instrText>
</w:r>
</w:ins>
<w:del>
<w:r>
<w:delInstrText>FORMFIELDTEXT</w:delInstrText>
</w:r>
</w:del>
<w:fldChar w:fldCharType="separate" />
…
<w:fldChar w:fldCharType="end" />

The deleted field code is contained in a delInstrText node, while the inserted (and current) field code is contained in an instrText node. end example]

Parent Elements

r (§22.1.2.87); r (§17.3.2.25)

Attributes

Description

xml:space (Content Contains Significant Whitespace)

Namespace: http://www.w3.org/XML/1998/namespace

Specifies how white space should be handled for the contents of this element using the W3C space preservation rules.

[Example: Consider the following run contained within a WordprocessingML document:

<w:r>
<w:t>   significant whitespace   </w:t>
</w:r>

Although there are three spaces on each side of the text content in the run, that whitespace has not been specifically marked as significant, therefore it is subject to the space preservation rules currently specified in that run's scope. end example]

The possible values for this attribute are defined by §2.10 of the XML 1.0 specification.

[Note: The W3C XML Schema definition of this element’s content model (CT_Text) is located in §A.1. end note]

© ISO/IEC29500: 2008.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

DeletedFieldCode Members

DocumentFormat.OpenXml.Wordprocessing Namespace