Freigeben über


AnimateColor-Klasse

Animate Color Behavior.When the object is serialized out as xml, its qualified name is p:animClr.

Vererbungshierarchie

System.Object
  DocumentFormat.OpenXml.OpenXmlElement
    DocumentFormat.OpenXml.OpenXmlCompositeElement
      DocumentFormat.OpenXml.Presentation.AnimateColor

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

Syntax

'Declaration
<ChildElementInfoAttribute(GetType(ToColor))> _
<ChildElementInfoAttribute(GetType(CommonBehavior))> _
<ChildElementInfoAttribute(GetType(ByColor))> _
<ChildElementInfoAttribute(GetType(FromColor))> _
Public Class AnimateColor _
    Inherits OpenXmlCompositeElement
'Usage
Dim instance As AnimateColor
[ChildElementInfoAttribute(typeof(ToColor))]
[ChildElementInfoAttribute(typeof(CommonBehavior))]
[ChildElementInfoAttribute(typeof(ByColor))]
[ChildElementInfoAttribute(typeof(FromColor))]
public class AnimateColor : OpenXmlCompositeElement

Hinweise

The following table lists the possible child types:

  • CommonBehavior <p:cBhvr>

  • ByColor <p:by>

  • FromColor <p:from>

  • ToColor <p:to>

[ISO/IEC 29500-1 1. Ausgabe]

19.5.2 animClr (Animate Color Behavior)

This animation element is responsible for animating the color of an object.

[Example: Consider trying to emphasize a shape by changing its fill color to scheme color accent2. The <animClr> element should be used as follows:

<p:animClr clrSpc="rgb">
  <p:cBhvr>
    <p:cTn id="1" dur="2000" fill="hold"/>
    <p:tgtEl>
      <p:spTgt spid="1"/>
    </p:tgtEl>
    <p:attrNameLst>
      <p:attrName>fillcolor</p:attrName>
    </p:attrNameLst>
  </p:cBhvr>
  <p:to>
    <a:schemeClr val="accent2"/>
  </p:to>
</p:animClr>

end example]

Parent Elements

childTnLst (§19.5.25); subTnLst (§19.5.78); tnLst (§19.5.87)

Child Elements

Subclause

by (By)

§19.5.20

cBhvr (Common Behavior)

§19.5.22

from (From)

§19.5.43

to (To)

§19.5.90

Attributes

Description

clrSpc (Color Space)

This attribute specifies the color space in which to interpolate the animation. Values for example can be HSL & RGB.

 

The values for from/to/by/etc. can still be specified in any supported color format without affecting the color space within which the animation happens.

 

The RGB color space is best used for doing animations between two different colors since it doesn't require going through any other hues between the two colors specified. The HSL space is useful for animating through a rainbow of colors or for modifying just the saturation by 30% for example.

The possible values for this attribute are defined by the ST_TLAnimateColorSpace simple type (§19.7.23).

dir (Direction)

This attribute specifies which direction to cycle the hue around the color wheel. Values are clockwise or counter clockwise. Default is clockwise.

The possible values for this attribute are defined by the ST_TLAnimateColorDirection simple type (§19.7.22).

[Note: The W3C XML Schema definition of this element's content model (CT_TLAnimateColorBehavior) is located in §A.3. 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

AnimateColor-Member

DocumentFormat.OpenXml.Presentation-Namespace