1 write to _inheritableTextElementProperties
PresentationFramework (1)
src\Framework\System\Windows\Documents\TextSchema.cs (1)
58
_inheritableTextElementProperties
= new DependencyProperty[textElementPropertyList.Length + Typography.TypographyPropertiesList.Length];
11 references to _inheritableTextElementProperties
PresentationFramework (11)
src\Framework\System\Windows\Documents\TextSchema.cs (11)
59
Array.Copy(textElementPropertyList, 0,
_inheritableTextElementProperties
, 0, textElementPropertyList.Length);
60
Array.Copy(Typography.TypographyPropertiesList, 0,
_inheritableTextElementProperties
, textElementPropertyList.Length, Typography.TypographyPropertiesList.Length);
70
_inheritableBlockProperties = new DependencyProperty[blockPropertyList.Length +
_inheritableTextElementProperties
.Length];
72
Array.Copy(
_inheritableTextElementProperties
, 0, _inheritableBlockProperties, blockPropertyList.Length,
_inheritableTextElementProperties
.Length);
81
_inheritableTableCellProperties = new DependencyProperty[tableCellPropertyList.Length +
_inheritableTextElementProperties
.Length];
83
Array.Copy(
_inheritableTextElementProperties
, 0, _inheritableTableCellProperties, tableCellPropertyList.Length,
_inheritableTextElementProperties
.Length);
472
return
_inheritableTextElementProperties
;
689
for (int i = 0; i <
_inheritableTextElementProperties
.Length; i++)
691
if (formattingProperty ==
_inheritableTextElementProperties
[i])