1 write to _inheritableTextElementProperties
PresentationFramework (1)
System\Windows\Documents\TextSchema.cs (1)
55
_inheritableTextElementProperties
= new DependencyProperty[textElementPropertyList.Length + Typography.TypographyPropertiesList.Length];
11 references to _inheritableTextElementProperties
PresentationFramework (11)
System\Windows\Documents\TextSchema.cs (11)
56
Array.Copy(textElementPropertyList, 0,
_inheritableTextElementProperties
, 0, textElementPropertyList.Length);
57
Array.Copy(Typography.TypographyPropertiesList, 0,
_inheritableTextElementProperties
, textElementPropertyList.Length, Typography.TypographyPropertiesList.Length);
67
_inheritableBlockProperties = new DependencyProperty[blockPropertyList.Length +
_inheritableTextElementProperties
.Length];
69
Array.Copy(
_inheritableTextElementProperties
, 0, _inheritableBlockProperties, blockPropertyList.Length,
_inheritableTextElementProperties
.Length);
78
_inheritableTableCellProperties = new DependencyProperty[tableCellPropertyList.Length +
_inheritableTextElementProperties
.Length];
80
Array.Copy(
_inheritableTextElementProperties
, 0, _inheritableTableCellProperties, tableCellPropertyList.Length,
_inheritableTextElementProperties
.Length);
469
return
_inheritableTextElementProperties
;
686
for (int i = 0; i <
_inheritableTextElementProperties
.Length; i++)
688
if (formattingProperty ==
_inheritableTextElementProperties
[i])