9 writes to Value
PresentationCore (9)
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (3)
45Value = value; 54Value = value; 64Value = value;
System\Windows\Media\Animation\Generated\KeyFrames.cs (3)
181Value = value; 190Value = value; 245Value = (Byte)value;
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (3)
50Value = value; 59Value = value; 71Value = value;
12 references to Value
PresentationCore (12)
System\Windows\Media\Animation\Generated\ByteAnimationUsingKeyFrames.cs (4)
625return GetResolvedKeyFrame(resolvedKeyFrameIndex).Value; 934Byte prevKeyValue = _keyFrames[index - 1].Value; 938Byte currentKeyValue = _keyFrames[index].Value; 965totalLength += AnimatedTypeHelpers.GetSegmentLengthByte(prevKeyValue, _keyFrames[index].Value);
System\Windows\Media\Animation\Generated\DiscreteKeyFrames.cs (1)
161return Value;
System\Windows\Media\Animation\Generated\EasingKeyFrames.cs (2)
104return Value; 108return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\KeyFrames.cs (1)
241return Value;
System\Windows\Media\Animation\Generated\LinearKeyFrames.cs (2)
84return Value; 88return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, keyFrameProgress);
System\Windows\Media\Animation\Generated\SplineKeyFrames.cs (2)
105return Value; 111return AnimatedTypeHelpers.InterpolateByte(baseValue, Value, splineProgress);