[Table of Contents] [docx version]
Error! No text of specified style in document.
txEffectClrLst (Text Effect Color List)
This element defines a list of colors which are used as text effect colors in the color transform. The text effect colors define the color of the text effects used on a given node in a diagram
[Example: Consider the following example of a txEffectClrLst in DiagramML:
<dgm:txEffectClrLst meth="repeat">
<a:schemeClr val="dk2"/>
</dgm:txEffectClrLst>
In this example the txEffectClrLst contains a single scheme color and is utilizing the repeat method for color application. end example]
Parent Elements |
styleLbl (§5.9.4.10) |
Child Elements |
Subclause |
hslClr (Hue, Saturation, Luminance Color Model) |
§5.1.2.2.13 |
prstClr (Preset Color) |
§5.1.2.2.22 |
schemeClr (Scheme Color) |
§5.1.2.2.29 |
scrgbClr (RGB Color Model - Percentage Variant) |
§5.1.2.2.30 |
srgbClr (RGB Color Model - Hex Variant) |
§5.1.2.2.32 |
sysClr (System Color) |
§5.1.2.2.33 |
Attributes |
Description |
hueDir (Hue Direction) |
The direction around the color wheel the hue shift (if defined) will occur.
[Example: Consider the following example of a hueDir in use:
<dgm:lnClrLst hueDir="cw" meth="repeat"> <a:schemeClr val="dk2"> <a:tint val="60000"/> </a:schemeClr> </dgm:lnClrLst>
In this example an lnClrLst is defined with a hue direction defined as clockwise. end example]
The possible values for this attribute are defined by the ST_HueDir simple type (§5.9.7.37). |
meth (Color Application Method Type) |
The type of method used to apply the color transform.
[Example: Consider the following example of a meth in use:
<dgm:lnClrLst hueDir="cw" meth="repeat"> <a:schemeClr val="dk2"> <a:tint val="60000"/> </a:schemeClr> </dgm:lnClrLst>
In this example and lnClrLst is defined using the repeat color application method. end example]
The possible values for this attribute are defined by the ST_ClrAppMethod simple type (§5.9.7.16). |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_Colors">
<sequence>
<group ref="a:EG_ColorChoice" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="meth" type="ST_ClrAppMethod" use="optional" default="span"/>
<attribute name="hueDir" type="ST_HueDir" use="optional" default="cw"/>
</complexType>