7 instantiations of FigureLength
PresentationFramework (7)
System\Windows\Documents\Figure.cs (2)
210
new
FigureLength
(1.0, FigureUnitType.Auto),
231
new
FigureLength
(1.0, FigureUnitType.Auto),
System\Windows\FigureLengthConverter.cs (2)
114
return new
FigureLength
(Convert.ToDouble(source, cultureInfo)); //conversion from numeric type
220
return (new
FigureLength
(value, unit));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4561
DefaultConstructor = delegate () { return new System.Windows.
FigureLength
(); },
System\Windows\Markup\KnownTypes.cs (1)
1257
case KnownElements.FigureLength: o = new System.Windows.
FigureLength
(); break;
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
167
return new
FigureLength
(unitValue, unitType);
26 references to FigureLength
PresentationFramework (26)
MS\Internal\PtsHost\FigureHelper.cs (3)
71
internal static double CalculateFigureWidth(StructuralCache structuralCache, Figure figure,
FigureLength
figureLength, out bool isWidthAuto)
124
internal static double CalculateFigureHeight(StructuralCache structuralCache, Figure figure,
FigureLength
figureLength, out bool isHeightAuto)
199
internal static double CalculateFigureCommon(
FigureLength
figureLength)
MS\Internal\PtsHost\FloaterParagraph.cs (1)
892
FigureLength
figureLength = ((Figure)Element).Width;
System\Windows\Documents\Figure.cs (6)
207
typeof(
FigureLength
),
216
public
FigureLength
Width
218
get { return (
FigureLength
)GetValue(WidthProperty); }
228
typeof(
FigureLength
),
237
public
FigureLength
Height
239
get { return (
FigureLength
)GetValue(HeightProperty); }
System\Windows\FigureLength.cs (7)
52
public struct FigureLength : IEquatable<
FigureLength
>
157
public static bool operator == (
FigureLength
fl1,
FigureLength
fl2)
170
public static bool operator != (
FigureLength
fl1,
FigureLength
fl2)
184
if (oCompare is
FigureLength
l)
198
public bool Equals(
FigureLength
figureLength)
System\Windows\FigureLengthConverter.cs (6)
146
&& value is
FigureLength
)
148
FigureLength
fl = (
FigureLength
)value;
157
ConstructorInfo ci = typeof(
FigureLength
).GetConstructor(new Type[] { typeof(double), typeof(FigureUnitType) });
180
internal static string ToString(
FigureLength
fl, CultureInfo cultureInfo)
213
internal static
FigureLength
FromString(string s, CultureInfo cultureInfo)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
296
case 203: t = () => typeof(
FigureLength
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4558
typeof(System.Windows.
FigureLength
),
System\Windows\Markup\KnownTypes.cs (1)
5750
case KnownElements.FigureLength: t = typeof(System.Windows.
FigureLength
); break;