25 references to FlowDirectionProperty
PresentationFramework (25)
MS\Internal\Text\LineProperties.cs (1)
129_flowDirection = (FlowDirection)element.GetValue(Block.FlowDirectionProperty);
System\Windows\Documents\Block.cs (2)
264get { return (FlowDirection)GetValue(FlowDirectionProperty); } 265set { SetValue(FlowDirectionProperty, value); }
System\Windows\Documents\FlowDocument.cs (1)
351Block.FlowDirectionProperty.AddOwner(_typeofThis);
System\Windows\Documents\List.cs (2)
285Paragraph.FlowDirectionProperty, firstBlock.GetValue(Paragraph.FlowDirectionProperty));
System\Windows\Documents\ListItem.cs (1)
229Block.FlowDirectionProperty.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
260Block.FlowDirectionProperty.AddOwner(typeof(TableCell));
System\Windows\Documents\TextRange.cs (1)
1665(FlowDirection)textSegment.Start.GetValue(Paragraph.FlowDirectionProperty) == FlowDirection.RightToLeft)
System\Windows\Documents\TextRangeEdit.cs (4)
761if (property == Block.FlowDirectionProperty) 813if (property == Block.FlowDirectionProperty) 851FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.FlowDirectionProperty); 898if (property == Block.FlowDirectionProperty)
System\Windows\Documents\TextRangeEditLists.cs (10)
231Paragraph.FlowDirectionProperty, precedingList.GetValue(Paragraph.FlowDirectionProperty)); 389FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.FlowDirectionProperty); 391TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 551object listFlowDirectionValue = unindentedList.GetValue(Paragraph.FlowDirectionProperty); 573TextRangeEdit.SetParagraphProperty(start, end, Paragraph.FlowDirectionProperty, listFlowDirectionValue); 680!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 700!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 731(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty)))) 739(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))))
System\windows\Documents\TextSelection.cs (2)
1991FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.FlowDirectionProperty); 1992FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.FlowDirectionProperty);