25 references to FlowDirectionProperty
PresentationFramework (25)
src\Framework\MS\Internal\Text\LineProperties.cs (1)
132_flowDirection = (FlowDirection)element.GetValue(Block.FlowDirectionProperty);
src\Framework\System\Windows\Documents\Block.cs (2)
276get { return (FlowDirection)GetValue(FlowDirectionProperty); } 277set { SetValue(FlowDirectionProperty, value); }
src\Framework\System\Windows\Documents\FlowDocument.cs (1)
359Block.FlowDirectionProperty.AddOwner(_typeofThis);
src\Framework\System\Windows\Documents\List.cs (2)
295Paragraph.FlowDirectionProperty, firstBlock.GetValue(Paragraph.FlowDirectionProperty));
src\Framework\System\Windows\Documents\ListItem.cs (1)
236Block.FlowDirectionProperty.AddOwner(typeof(ListItem));
src\Framework\System\Windows\Documents\TableCell.cs (1)
267Block.FlowDirectionProperty.AddOwner(typeof(TableCell));
src\Framework\System\Windows\Documents\TextRange.cs (1)
1662(FlowDirection)textSegment.Start.GetValue(Paragraph.FlowDirectionProperty) == FlowDirection.RightToLeft)
src\Framework\System\Windows\Documents\TextRangeEdit.cs (4)
763if (property == Block.FlowDirectionProperty) 815if (property == Block.FlowDirectionProperty) 853FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.FlowDirectionProperty); 900if (property == Block.FlowDirectionProperty)
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (10)
233Paragraph.FlowDirectionProperty, precedingList.GetValue(Paragraph.FlowDirectionProperty)); 391FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.FlowDirectionProperty); 393TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.FlowDirectionProperty, flowDirection); 553object listFlowDirectionValue = unindentedList.GetValue(Paragraph.FlowDirectionProperty); 575TextRangeEdit.SetParagraphProperty(start, end, Paragraph.FlowDirectionProperty, listFlowDirectionValue); 682!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 702!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))) 733(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/startListItem.List.GetValue(Paragraph.FlowDirectionProperty)))) 741(!TextSchema.ValuesAreEqual(/*newValue*/newFlowDirectionValue, /*currentValue*/endListItem.List.GetValue(Paragraph.FlowDirectionProperty))))
src\Framework\System\windows\Documents\TextSelection.cs (2)
1999FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.FlowDirectionProperty); 2000FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.FlowDirectionProperty);