1 write to _inheritableTextElementProperties
PresentationFramework (1)
System\Windows\Documents\TextSchema.cs (1)
54
_inheritableTextElementProperties
= new DependencyProperty[textElementPropertyList.Length + Typography.TypographyPropertiesList.Length];
11 references to _inheritableTextElementProperties
PresentationFramework (11)
System\Windows\Documents\TextSchema.cs (11)
55
Array.Copy(textElementPropertyList, 0,
_inheritableTextElementProperties
, 0, textElementPropertyList.Length);
56
Array.Copy(Typography.TypographyPropertiesList, 0,
_inheritableTextElementProperties
, textElementPropertyList.Length, Typography.TypographyPropertiesList.Length);
66
_inheritableBlockProperties = new DependencyProperty[blockPropertyList.Length +
_inheritableTextElementProperties
.Length];
68
Array.Copy(
_inheritableTextElementProperties
, 0, _inheritableBlockProperties, blockPropertyList.Length,
_inheritableTextElementProperties
.Length);
77
_inheritableTableCellProperties = new DependencyProperty[tableCellPropertyList.Length +
_inheritableTextElementProperties
.Length];
79
Array.Copy(
_inheritableTextElementProperties
, 0, _inheritableTableCellProperties, tableCellPropertyList.Length,
_inheritableTextElementProperties
.Length);
468
return
_inheritableTextElementProperties
;
680
for (int i = 0; i <
_inheritableTextElementProperties
.Length; i++)
682
if (formattingProperty ==
_inheritableTextElementProperties
[i])