9 writes to Value
PresentationCore (9)
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
304Value = value; 313Value = value; 323Value = value;
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
627Value = value; 636Value = value; 691Value = (Decimal)value;
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
320Value = value; 329Value = value; 344Value = value;
12 references to Value
PresentationCore (12)
Core\CSharp\System\Windows\Media\Animation\Generated\DecimalAnimationUsingKeyFrames.cs (4)
647return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 954Decimal prevKeyValue = _keyFrames[index - 1].Value; 958Decimal currentKeyValue = _keyFrames[index].Value; 985totalLength += AnimatedTypeHelpers.GetSegmentLengthDecimal(prevKeyValue, _keyFrames[index].Value);
Core\CSharp\System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
400return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
363return Value; 367return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
687return Value;
Core\CSharp\System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
247return Value; 251return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, keyFrameProgress);
Core\CSharp\System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
378return Value; 384return AnimatedTypeHelpers.InterpolateDecimal(baseValue, Value, splineProgress);