5 writes to Document
PresentationFramework (5)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
196((RichTextBox)InnerControl).Document = new FlowDocument(new Paragraph(new Run())); 243richTextBox.Document = document;
System\Windows\Controls\RichTextBox.cs (2)
119this.Document = document; 166this.Document = (FlowDocument)value;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5507bamlMember.SetDelegate = 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)
209TextRange rtbRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd); 265TextRange textRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd);
System\Windows\Controls\RichTextBox.cs (7)
146/// by the parser; a more direct way of adding a child to a RichTextBox is to use the <see cref="Document" /> 298Document?.SetDpi(newDpiScaleInfo); 322renderScope.Document = this.Document; 768if (this.Document != null) 770this.Document.TextWrapping = TextWrapping.Wrap; 805if (richTextBox.Document != null) 807richTextBox.Document.CoerceValue(IsEnabledProperty);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5508bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.RichTextBox)target).Document; };