5 writes to Document
PresentationFramework (5)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
202((RichTextBox)InnerControl).Document = new FlowDocument(new Paragraph(new Run())); 249richTextBox.Document = document;
src\Framework\System\Windows\Controls\RichTextBox.cs (2)
121this.Document = document; 171this.Document = (FlowDocument)value;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5482bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Controls.RichTextBox)target).Document = (System.Windows.Documents.FlowDocument)value; };
12 references to Document
PresentationFramework (12)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (4)
215TextRange rtbRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd); 271TextRange textRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd);
src\Framework\System\Windows\Controls\RichTextBox.cs (7)
148/// by the parser; a more direct way of adding a child to a RichTextBox is to use the <see cref="Document" /> 306Document?.SetDpi(newDpiScaleInfo); 330renderScope.Document = this.Document; 782if (this.Document != null) 784this.Document.TextWrapping = TextWrapping.Wrap; 819if (richTextBox.Document != null) 821richTextBox.Document.CoerceValue(IsEnabledProperty);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5483bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.RichTextBox)target).Document; };