<styleLbl>
(Style Label)
This element defines a style label. The style label is used to define a color transform that is applied to a given node in a diagram.
<dgm:styleLbl name="exampleStyleLabel"> <dgm:fillClrLst> <a:schemeClr val="accent2"/> <a:schemeClr val="accent3"/> </dgm:fillClrLst> <dgm:linClrLst meth="repeat"> <a:schemeClr val="lt1"/> </dgm:linClrLst> <dgm:effectClrLst/> <dgm:txLinClrLst/> <dgm:txFillClrLst/> <dgm:txEffectClrLst/> </dgm:styleLbl>
In this example we see a style label defined in its entirety. This style label can be used on a layout node in order to define the color transform that is to be applied to the node. ]
Parent Elements |
---|
|
Child Elements |
Subclause |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
Attributes |
Description |
---|---|
|
A name given to the style label. This name can be referenced by layout nodes in order to apply the style label to the layout node. <dgm:styleLbl name="exampleStyleLabel"> ... </dgm:styleLbl> In this example we see a style label defined with the The possible values for this attribute are defined by the XML Schema string datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_CTStyleLabel">
<sequence>
<element name="fillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
<element name="linClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
<element name="effectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
<element name="txLinClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
<element name="txFillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
<element name="txEffectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/>
<element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/>
</sequence>
<attribute name="name" type="xsd:string" use="required"/>
</complexType>