5 writes to Document
PresentationFramework (5)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
191
((RichTextBox)InnerControl).
Document
= new FlowDocument(new Paragraph(new Run()));
238
richTextBox.
Document
= document;
System\Windows\Controls\RichTextBox.cs (2)
115
this.
Document
= document;
162
this.
Document
= (FlowDocument)value;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5874
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)
204
TextRange rtbRange = new TextRange(richTextBox.
Document
.ContentStart, richTextBox.
Document
.ContentEnd);
260
TextRange 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
" />
294
Document
?.SetDpi(newDpiScaleInfo);
319
Document = this.
Document
766
if (this.
Document
!= null)
768
this.
Document
.TextWrapping = TextWrapping.Wrap;
803
if (richTextBox.
Document
!= null)
805
richTextBox.
Document
.CoerceValue(IsEnabledProperty);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5875
GetDelegate = delegate (object target) { return ((System.Windows.Controls.RichTextBox)target).
Document
; }