<bordertop>
(Top Border)
This element specifies the properties for the top border of a VML object.
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies whether this border should be modified to create the appearance of a shadow. For the right and bottom borders, this is accomplished by duplicating the border below and right of the normal border location. For the left and top borders, this is accomplished by moving the border down and to the right of its original location. If this attribute is omitted, then the border is not given the shadow effect. example:
<wd:bordertop wd:shadow="true" ... /> This element's The possible values for this attribute are defined by the ST_BorderShadow simple type (§6.3.3.1). |
|
Specifies the style of border used on this object. See the simple type definition for a description of each border style. example:
<wd:borderleft wd:type="single" …/> This border's The possible values for this attribute are defined by the ST_BorderType simple type (§6.3.3.2). |
|
Specifies the width of the current border. The width of this border is specified in measurements of eighths of a point, with a minimum value of two (one-fourth of a point) and a maximum value of 96 (twelve points). Any values outside this range may be reassigned to a more appropriate value. example:
<wd:bordertop wd:type="dashed" wd:width="24" …/> <wd:borderleft wd:type="dashed" wd:width="24" …/> <wd:borderbottom wd:type="dashed" wd:width="24" …/> <wd:borderright wd:type="dashed" wd:width="24" …/> The The possible values for this attribute are defined by the XML Schema positiveInteger datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Border">
<attribute name="type" type="ST_BorderType" use="optional"/>
<attribute name="width" type="xsd:positiveInteger" use="optional"/>
<attribute name="shadow" type="ST_BorderShadow" use="optional"/>
</complexType>