11 references to FlowDirectionProperty
PresentationFramework (11)
src\Framework\MS\Internal\Documents\TextDocumentView.cs (5)
3334FlowDirection flowDirection = (FlowDirection)_owner.StructuralCache.PropertyOwner.GetValue(FlowDocument.FlowDirectionProperty); 3352FlowDirection flowDirection = (FlowDirection)_owner.StructuralCache.PropertyOwner.GetValue(FlowDocument.FlowDirectionProperty); 3378FlowDirection flowDirection = (FlowDirection)_owner.StructuralCache.PropertyOwner.GetValue(FlowDocument.FlowDirectionProperty); 3396FlowDirection flowDirection = (FlowDirection)_owner.StructuralCache.PropertyOwner.GetValue(FlowDocument.FlowDirectionProperty); 3414FlowDirection flowDirection = (FlowDirection)_owner.StructuralCache.PropertyOwner.GetValue(FlowDocument.FlowDirectionProperty);
src\Framework\MS\Internal\PtsHost\FlowDocumentPage.cs (1)
899FlowDirection flowdirection = (FlowDirection)_structuralCache.PropertyOwner.GetValue(FlowDocument.FlowDirectionProperty);
src\Framework\System\Windows\Documents\FlowDocument.cs (2)
366get { return (FlowDirection)GetValue(FlowDirectionProperty); } 367set { SetValue(FlowDirectionProperty, value); }
src\Framework\System\windows\Documents\TextEditorSelection.cs (1)
2053FlowDirection flowDirection = (FlowDirection)position.GetValue(FlowDocument.FlowDirectionProperty);
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
1251((TextSelection)This.Selection).ApplyPropertyValue(FlowDocument.FlowDirectionProperty, FlowDirection.LeftToRight, /*applyToParagraphs*/true); 1267((TextSelection)This.Selection).ApplyPropertyValue(FlowDocument.FlowDirectionProperty, FlowDirection.RightToLeft, /*applyToParagraphs*/true);