9 writes to Value
PresentationFramework (9)
src\Framework\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
54Value = value; 63Value = value; 73Value = value;
src\Framework\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
51Value = value; 60Value = value; 115Value = (Thickness)value;
src\Framework\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
54Value = value; 63Value = value; 78Value = value;
12 references to Value
PresentationFramework (12)
src\Framework\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
96return Value;
src\Framework\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
113return Value; 117return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
src\Framework\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
111return Value;
src\Framework\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
93return Value; 97return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, keyFrameProgress);
src\Framework\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
112return Value; 118return AnimatedTypeHelpers.InterpolateThickness(baseValue, Value, splineProgress);
src\Framework\System\Windows\Media\Animation\Generated\ThicknessAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Thickness prevKeyValue = _keyFrames[index - 1].Value; 958Thickness currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthThickness(prevKeyValue, _keyFrames[index].Value);