25 references to FlowDirectionProperty
PresentationFramework (25)
MS\Internal\Text\LineProperties.cs (1)
125_flowDirection = (FlowDirection)element.GetValue(Block.FlowDirectionProperty);
System\Windows\Documents\Block.cs (2)
262get { return (FlowDirection)GetValue(FlowDirectionProperty); } 263set { 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)
228Block.FlowDirectionProperty.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
247Block.FlowDirectionProperty.AddOwner(typeof(TableCell));
System\Windows\Documents\TextRange.cs (1)
1662(FlowDirection)textSegment.Start.GetValue(Paragraph.FlowDirectionProperty) == FlowDirection.RightToLeft)
System\Windows\Documents\TextRangeEdit.cs (4)
759if (property == Block.FlowDirectionProperty) 811if (property == Block.FlowDirectionProperty) 849FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.FlowDirectionProperty); 896if (property == Block.FlowDirectionProperty)
System\Windows\Documents\TextRangeEditLists.cs (10)
229Paragraph.FlowDirectionProperty, precedingList.GetValue(Paragraph.FlowDirectionProperty)); 387FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.FlowDirectionProperty); 389TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 549object listFlowDirectionValue = unindentedList.GetValue(Paragraph.FlowDirectionProperty); 571TextRangeEdit.SetParagraphProperty(start, end, Paragraph.FlowDirectionProperty, listFlowDirectionValue); 678!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 698!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 729(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty)))) 737(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))))
System\windows\Documents\TextSelection.cs (2)
1988FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.FlowDirectionProperty); 1989FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.FlowDirectionProperty);