25 references to FlowDirectionProperty
PresentationFramework (25)
MS\Internal\Text\LineProperties.cs (1)
124_flowDirection = (FlowDirection)element.GetValue(Block.FlowDirectionProperty);
System\Windows\Documents\Block.cs (2)
261get { return (FlowDirection)GetValue(FlowDirectionProperty); } 262set { SetValue(FlowDirectionProperty, value); }
System\Windows\Documents\FlowDocument.cs (1)
350Block.FlowDirectionProperty.AddOwner(_typeofThis);
System\Windows\Documents\List.cs (2)
284Paragraph.FlowDirectionProperty, firstBlock.GetValue(Paragraph.FlowDirectionProperty));
System\Windows\Documents\ListItem.cs (1)
227Block.FlowDirectionProperty.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
246Block.FlowDirectionProperty.AddOwner(typeof(TableCell));
System\Windows\Documents\TextRange.cs (1)
1654(FlowDirection)textSegment.Start.GetValue(Paragraph.FlowDirectionProperty) == FlowDirection.RightToLeft)
System\Windows\Documents\TextRangeEdit.cs (4)
758if (property == Block.FlowDirectionProperty) 810if (property == Block.FlowDirectionProperty) 848FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.FlowDirectionProperty); 895if (property == Block.FlowDirectionProperty)
System\Windows\Documents\TextRangeEditLists.cs (10)
228Paragraph.FlowDirectionProperty, precedingList.GetValue(Paragraph.FlowDirectionProperty)); 388FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.FlowDirectionProperty); 390TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 550object listFlowDirectionValue = unindentedList.GetValue(Paragraph.FlowDirectionProperty); 572TextRangeEdit.SetParagraphProperty(start, end, Paragraph.FlowDirectionProperty, listFlowDirectionValue); 679!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 699!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 730(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty)))) 738(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))))
System\windows\Documents\TextSelection.cs (2)
1972FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.FlowDirectionProperty); 1973FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.FlowDirectionProperty);