5 writes to Document
PresentationFramework (5)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
190
((RichTextBox)InnerControl).
Document
= new FlowDocument(new Paragraph(new Run()));
237
richTextBox.
Document
= document;
System\Windows\Controls\RichTextBox.cs (2)
114
this.
Document
= document;
161
this.
Document
= (FlowDocument)value;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5873
SetDelegate = delegate (object target, object value) { ((System.Windows.Controls.RichTextBox)target).
Document
= (System.Windows.Documents.FlowDocument)value; },
11 references to Document
PresentationFramework (11)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (4)
203
TextRange rtbRange = new TextRange(richTextBox.
Document
.ContentStart, richTextBox.
Document
.ContentEnd);
259
TextRange textRange = new TextRange(richTextBox.
Document
.ContentStart, richTextBox.
Document
.ContentEnd);
System\Windows\Controls\RichTextBox.cs (6)
141
/// by the parser; a more direct way of adding a child to a RichTextBox is to use the <see cref="
Document
" />
293
Document
?.SetDpi(newDpiScaleInfo);
318
Document = this.
Document
765
if (this.
Document
!= null)
767
this.
Document
.TextWrapping = TextWrapping.Wrap;
802
richTextBox.
Document
?.CoerceValue(IsEnabledProperty);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
5874
GetDelegate = delegate (object target) { return ((System.Windows.Controls.RichTextBox)target).
Document
; }