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