7 instantiations of FigureLength
PresentationFramework (7)
System\Windows\Documents\Figure.cs (2)
213new FigureLength(1.0, FigureUnitType.Auto), 234new FigureLength(1.0, FigureUnitType.Auto),
System\Windows\FigureLengthConverter.cs (2)
121return new FigureLength(Convert.ToDouble(source, cultureInfo)); //conversion from numeric type 227return (new FigureLength(value, unit));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4223bamlType.DefaultConstructor = delegate() { return new System.Windows.FigureLength(); };
System\Windows\Markup\KnownTypes.cs (1)
1264case KnownElements.FigureLength: o = new System.Windows.FigureLength(); break;
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
177return new FigureLength(unitValue, unitType);
28 references to FigureLength
PresentationFramework (28)
MS\Internal\PtsHost\FigureHelper.cs (3)
81internal static double CalculateFigureWidth(StructuralCache structuralCache, Figure figure, FigureLength figureLength, out bool isWidthAuto) 134internal static double CalculateFigureHeight(StructuralCache structuralCache, Figure figure, FigureLength figureLength, out bool isHeightAuto) 209internal static double CalculateFigureCommon(FigureLength figureLength)
MS\Internal\PtsHost\FloaterParagraph.cs (1)
902FigureLength figureLength = ((Figure)Element).Width;
System\Windows\Documents\Figure.cs (6)
210typeof(FigureLength), 219public FigureLength Width 221get { return (FigureLength)GetValue(WidthProperty); } 231typeof(FigureLength), 240public FigureLength Height 242get { return (FigureLength)GetValue(HeightProperty); }
System\Windows\FigureLength.cs (9)
54public struct FigureLength : IEquatable<FigureLength> 159public static bool operator == (FigureLength fl1, FigureLength fl2) 172public static bool operator != (FigureLength fl1, FigureLength fl2) 186if(oCompare is FigureLength) 188FigureLength l = (FigureLength)oCompare; 201public bool Equals(FigureLength figureLength)
System\Windows\FigureLengthConverter.cs (6)
153&& value is FigureLength ) 155FigureLength fl = (FigureLength)value; 164ConstructorInfo ci = typeof(FigureLength).GetConstructor(new Type[] { typeof(double), typeof(FigureUnitType) }); 187static internal string ToString(FigureLength fl, CultureInfo cultureInfo) 220static internal FigureLength FromString(string s, CultureInfo cultureInfo)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
299case 203: t = () => typeof(FigureLength); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4221typeof(System.Windows.FigureLength),
System\Windows\Markup\KnownTypes.cs (1)
5757case KnownElements.FigureLength: t = typeof(System.Windows.FigureLength); break;