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)
4221
bamlType.DefaultConstructor = delegate() { return new System.Windows.
FigureLength
(); };
System\Windows\Markup\KnownTypes.cs (1)
1264
case KnownElements.FigureLength: o = new System.Windows.
FigureLength
(); break;
System\Windows\Markup\XamlFigureLengthSerializer.cs (1)
168
return new
FigureLength
(unitValue, unitType);
28 references to FigureLength
PresentationFramework (28)
MS\Internal\PtsHost\FigureHelper.cs (3)
80
internal static double CalculateFigureWidth(StructuralCache structuralCache, Figure figure,
FigureLength
figureLength, out bool isWidthAuto)
133
internal static double CalculateFigureHeight(StructuralCache structuralCache, Figure figure,
FigureLength
figureLength, out bool isHeightAuto)
208
internal static double CalculateFigureCommon(
FigureLength
figureLength)
MS\Internal\PtsHost\FloaterParagraph.cs (1)
898
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 (9)
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
)
187
FigureLength
l = (
FigureLength
)oCompare;
200
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)
4219
typeof(System.Windows.
FigureLength
),
System\Windows\Markup\KnownTypes.cs (1)
5757
case KnownElements.FigureLength: t = typeof(System.Windows.
FigureLength
); break;