9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
44Value = value; 53Value = value; 63Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
180Value = value; 189Value = value; 244Value = (Byte)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
44Value = value; 53Value = value; 65Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (4)
621return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 930Byte prevKeyValue = _keyFrames[index - 1].Value; 934Byte currentKeyValue = _keyFrames[index].Value; 961totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
160return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
103return Value; 107return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
240return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
83return Value; 87return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
99return Value; 105return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, splineProgress);