5 writes to Document
PresentationFramework (5)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
191((RichTextBox)InnerControl).Document = new FlowDocument(new Paragraph(new Run())); 238richTextBox.Document = document;
System\Windows\Controls\RichTextBox.cs (2)
115this.Document = document; 162this.Document = (FlowDocument)value;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5874SetDelegate = delegate (object target, object value) { ((System.Windows.Controls.RichTextBox)target).Document = (System.Windows.Documents.FlowDocument)value; },
12 references to Document
PresentationFramework (12)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (4)
204TextRange rtbRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd); 260TextRange textRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd);
System\Windows\Controls\RichTextBox.cs (7)
142/// by the parser; a more direct way of adding a child to a RichTextBox is to use the <see cref="Document" /> 294Document?.SetDpi(newDpiScaleInfo); 319Document = this.Document 766if (this.Document != null) 768this.Document.TextWrapping = TextWrapping.Wrap; 803if (richTextBox.Document != null) 805richTextBox.Document.CoerceValue(IsEnabledProperty);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5875GetDelegate = delegate (object target) { return ((System.Windows.Controls.RichTextBox)target).Document; }