Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.26 KB

colorkeyframe_value.md

File metadata and controls

40 lines (31 loc) · 1.26 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame.Value
winrt property

Microsoft.UI.Xaml.Media.Animation.ColorKeyFrame.Value

-description

Gets or sets the key frame's target value.

-xaml-syntax

<colorKeyFrame Value="colorString"/>
-or-
<colorKeyFrame Value="referenceToColor"/>
- or -
<colorKeyFrame>
  <colorKeyFrame.Value>
    <Color>colorString</Color>
  </colorKeyFrame.Value>
</colorKeyFrame>

-xaml-values

colorString
colorStringA color specified as a string, using a variety of possible formats, including predefined named colors. For the full list of available string formats that can specify a Color as an attribute, see Color.
referenceToColor
referenceToColorA {StaticResource} markup extension reference or other reference to an existing color. You can define a Color in a ResourceDictionary in the form <Color x:Key="key">colorString</Color>.
## -property-value The key frame's target value, which is the value at its specified [KeyTime](colorkeyframe_keytime.md). The default is a [Color](/uwp/api/windows.ui.color) with an ARGB value of #00000000.

-remarks

-examples

-see-also