7 instantiations of FigureLength
PresentationFramework (7)
System\Windows\Documents\Figure.cs (2)
211
new
FigureLength
(1.0, FigureUnitType.Auto),
232
new
FigureLength
(1.0, FigureUnitType.Auto),
System\Windows\FigureLengthConverter.cs (2)
115
return new
FigureLength
(Convert.ToDouble(source, cultureInfo)); //conversion from numeric type
221
return (new
FigureLength
(value, unit));
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4562
DefaultConstructor = delegate () { return new System.Windows.
FigureLength
(); },
System\Windows\Markup\KnownTypes.cs (1)
1258
case KnownElements.FigureLength: o = new System.Windows.
FigureLength
(); break;
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
168
return new
FigureLength
(unitValue, unitType);
26 references to FigureLength
PresentationFramework (26)
MS\Internal\PtsHost\FigureHelper.cs (3)
72
internal static double CalculateFigureWidth(StructuralCache structuralCache, Figure figure,
FigureLength
figureLength, out bool isWidthAuto)
125
internal static double CalculateFigureHeight(StructuralCache structuralCache, Figure figure,
FigureLength
figureLength, out bool isHeightAuto)
200
internal static double CalculateFigureCommon(
FigureLength
figureLength)
MS\Internal\PtsHost\FloaterParagraph.cs (1)
893
FigureLength
figureLength = ((Figure)Element).Width;
System\Windows\Documents\Figure.cs (6)
208
typeof(
FigureLength
),
217
public
FigureLength
Width
219
get { return (
FigureLength
)GetValue(WidthProperty); }
229
typeof(
FigureLength
),
238
public
FigureLength
Height
240
get { return (
FigureLength
)GetValue(HeightProperty); }
System\Windows\FigureLength.cs (7)
53
public struct FigureLength : IEquatable<
FigureLength
>
158
public static bool operator == (
FigureLength
fl1,
FigureLength
fl2)
171
public static bool operator != (
FigureLength
fl1,
FigureLength
fl2)
185
if (oCompare is
FigureLength
l)
199
public bool Equals(
FigureLength
figureLength)
System\Windows\FigureLengthConverter.cs (6)
147
&& value is
FigureLength
)
149
FigureLength
fl = (
FigureLength
)value;
158
ConstructorInfo ci = typeof(
FigureLength
).GetConstructor(new Type[] { typeof(double), typeof(FigureUnitType) });
181
static internal string ToString(
FigureLength
fl, CultureInfo cultureInfo)
214
static internal
FigureLength
FromString(string s, CultureInfo cultureInfo)
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
297
case 203: t = () => typeof(
FigureLength
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4559
typeof(System.Windows.
FigureLength
),
System\Windows\Markup\KnownTypes.cs (1)
5751
case KnownElements.FigureLength: t = typeof(System.Windows.
FigureLength
); break;