DeletedText Class
Deleted Text.When the object is serialized out as xml, its qualified name is w:delText.
Inheritance Hierarchy
System.Object
DocumentFormat.OpenXml.OpenXmlElement
DocumentFormat.OpenXml.OpenXmlLeafElement
DocumentFormat.OpenXml.OpenXmlLeafTextElement
DocumentFormat.OpenXml.Wordprocessing.TextType
DocumentFormat.OpenXml.Wordprocessing.DeletedText
Namespace: DocumentFormat.OpenXml.Wordprocessing
Assembly: DocumentFormat.OpenXml (in DocumentFormat.OpenXml.dll)
Syntax
'Декларация
Public Class DeletedText _
Inherits TextType
'Применение
Dim instance As DeletedText
public class DeletedText : TextType
Remarks
[ISO/IEC 29500-1 редакция 1]
17.3.3.7 delText (Deleted Text)
This element specifies that this run contains literal text which shall be displayed in the document. The delText element shall be used for all text runs which are part of a region of text that is contained in a deleted region using the del element (§17.13.5.14).
[Example: Consider a paragraph of WordprocessingML content which reads This is deleted text, where the words deleted text are part of a deleted region of the document. This paragraph would therefore be represented as follows:
<w:p>
<w:r>
<w:t xml:space="preserve">This is </w:t>
</w:r>
<w:del w:author="Cooper W.">
<w:r>
<w:delText>deleted text</w:delText>
</w:r>
</w:del>
</w:p>
The deleted text is contained in a delText node, while the regular text is contained in a t 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:
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. Приведенный выше текст переведен с английского языка на русский корпорацией Майкрософт (или ее подрядчиками) и ISO не несет ответственности за эти переводы.
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.