34 references to TextEditorCharacters
PresentationFramework (34)
src\Framework\System\windows\Documents\TextEditor.cs (1)
399TextEditorCharacters._RegisterClassHandlers(controlType, registerEventListeners);
src\Framework\System\windows\Documents\TextEditorCharacters.cs (23)
195TextEditorCharacters._OnApplyProperty(This, TextElement.FontWeightProperty, fontWeight); 215TextEditorCharacters._OnApplyProperty(This, TextElement.FontStyleProperty, fontStyle); 249TextEditorCharacters._OnApplyProperty(This, Inline.TextDecorationsProperty, toggledTextDecorations); 268TextEditorCharacters._OnApplyProperty(This, Typography.VariantsProperty, fontVariants); 287TextEditorCharacters._OnApplyProperty(This, Typography.VariantsProperty, fontVariants); 320if (fontSize < TextEditorCharacters.MaxFontPoint) 322fontSize += TextEditorCharacters.OneFontPoint; 323if (fontSize > TextEditorCharacters.MaxFontPoint) 325fontSize = TextEditorCharacters.MaxFontPoint; 329TextEditorCharacters._OnApplyProperty(This, TextElement.FontSizeProperty, fontSize); 335TextEditorCharacters._OnApplyProperty(This, TextElement.FontSizeProperty, OneFontPoint, /*applyToParagraphs:*/false, PropertyValueAction.IncreaseByAbsoluteValue); 362if (fontSize > TextEditorCharacters.OneFontPoint) 364fontSize -= TextEditorCharacters.OneFontPoint; 365if (fontSize < TextEditorCharacters.OneFontPoint) 367fontSize = TextEditorCharacters.OneFontPoint; 370TextEditorCharacters._OnApplyProperty(This, TextElement.FontSizeProperty, fontSize); 376TextEditorCharacters._OnApplyProperty(This, TextElement.FontSizeProperty, OneFontPoint, /*applyToParagraphs:*/false, PropertyValueAction.DecreaseByAbsoluteValue); 390TextEditorCharacters._OnApplyProperty(This, TextElement.FontSizeProperty, args.Parameter); 403TextEditorCharacters._OnApplyProperty(This, TextElement.FontFamilyProperty, args.Parameter); 416TextEditorCharacters._OnApplyProperty(This, TextElement.ForegroundProperty, args.Parameter); 429TextEditorCharacters._OnApplyProperty(This, TextElement.BackgroundProperty, args.Parameter); 453TextEditorCharacters._OnApplyProperty(This, Inline.FlowDirectionProperty, FlowDirection.RightToLeft); 462TextEditorCharacters._OnApplyProperty(This, Inline.FlowDirectionProperty, FlowDirection.LeftToRight);
src\Framework\System\windows\Documents\TextEditorParagraphs.cs (6)
90TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Left, /*applyToParagraphs*/true); 105TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Center, /*applyToParagraphs*/true); 120TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Right, /*applyToParagraphs*/true); 135TextEditorCharacters._OnApplyProperty(This, Block.TextAlignmentProperty, TextAlignment.Justify, /*applyToParagraphs*/true); 159TextEditorCharacters._OnApplyProperty(This, FrameworkElement.FlowDirectionProperty, 169TextEditorCharacters._OnApplyProperty(This, FrameworkElement.FlowDirectionProperty,
src\Framework\System\Windows\Documents\TextRangeEdit.cs (4)
1935if (newValue < TextEditorCharacters.OneFontPoint) 1937newValue = TextEditorCharacters.OneFontPoint; 1939else if (newValue > TextEditorCharacters.MaxFontPoint) 1941newValue = TextEditorCharacters.MaxFontPoint;