Freigeben über


DivBorder-Klasse

Set of Borders for HTML div.When the object is serialized out as xml, its qualified name is w:divBdr.

Vererbungshierarchie

System.Object
  DocumentFormat.OpenXml.OpenXmlElement
    DocumentFormat.OpenXml.OpenXmlCompositeElement
      DocumentFormat.OpenXml.Wordprocessing.DivBorder

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

Syntax

'Declaration
<ChildElementInfoAttribute(GetType(TopBorder))> _
<ChildElementInfoAttribute(GetType(LeftBorder))> _
<ChildElementInfoAttribute(GetType(BottomBorder))> _
<ChildElementInfoAttribute(GetType(RightBorder))> _
Public Class DivBorder _
    Inherits OpenXmlCompositeElement
'Usage
Dim instance As DivBorder
[ChildElementInfoAttribute(typeof(TopBorder))]
[ChildElementInfoAttribute(typeof(LeftBorder))]
[ChildElementInfoAttribute(typeof(BottomBorder))]
[ChildElementInfoAttribute(typeof(RightBorder))]
public class DivBorder : OpenXmlCompositeElement

Hinweise

The following table lists the possible child types:

  • TopBorder <w:top>

  • LeftBorder <w:left>

  • BottomBorder <w:bottom>

  • RightBorder <w:right>

[ISO/IEC 29500-1 1. Ausgabe]

17.15.2.7 divBdr (Set of Borders for HTML div)

This element specifies the set of borders for the boundaries of the current HTML div, body, or blockquote element, using the four border types defined by its child elements.

If this element is omitted, then there shall be no borders associated with the current HTML v, body, or blockquote element.

[Example: Consider a simple HTML document defined as follows:

<html>
<body>
<div style=" border-left-style:solid; border-right-style:groove; border-right-width:3px; border-top-style:dashed; border-top-width:3px; border-bottom-style:outset; border-bottom-width:3px">
<p>paragraph of text</p>
    </div>
</body>
</html>

This HTML would therefore normally appear as follows (image scaled appropriately):

DocumentFormat.OpenXml.Wordprocessing.DivBorder-im

Now, when this document is saved in the WordprocessingML format, the information stored on the div elements is stored in the web setting part as follows:

<w:divs>
<w:div w:id="1785730240">
…
<w:divBdr>
<w:top w:val="dashed" w:sz="18" w:space="7" w:color="auto" />
<w:left w:val="single" w:sz="24" w:space="4" w:color="auto" />
<w:bottom w:val="outset" w:sz="18" w:color="auto" />
<w:right w:val="threeDEngrave" w:sz="6" w:color="auto" />
</w:divBdr>
</w:div>
</w:divs>

The divBdr element specifies border information about the single HTML div structure in the document. end example]

Parent Elements

div (§17.15.2.6)

Child Elements

Subclause

bottom (Bottom Border for HTML div)

§17.15.2.4

left (Left Border for HTML div)

§17.15.2.21

right (Right Border for HTML div)

§17.15.2.36

top (Top Border for HTML div)

§17.15.2.44

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

© ISO/IEC29500: 2008. Die oben aufgeführten Textauszüge wurden von Microsoft (und/oder den Microsoft-Vendoren) von Englisch nach Deutsch übersetzt, und im Rahmen von ISO wird keinerlei Verantwortung für diese Übersetzungen übernommen.

Threadsicherheit

Alle öffentlichen static (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.

Siehe auch

Referenz

DivBorder-Member

DocumentFormat.OpenXml.Wordprocessing-Namespace