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)
261
get { return (FlowDirection)GetValue(
FlowDirectionProperty
); }
262
set { SetValue(
FlowDirectionProperty
, value); }
System\Windows\Documents\FlowDocument.cs (1)
350
Block.
FlowDirectionProperty
.AddOwner(_typeofThis);
System\Windows\Documents\List.cs (2)
284
Paragraph.
FlowDirectionProperty
, firstBlock.GetValue(Paragraph.
FlowDirectionProperty
));
System\Windows\Documents\ListItem.cs (1)
227
Block.
FlowDirectionProperty
.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
246
Block.
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)
758
if (property == Block.
FlowDirectionProperty
)
810
if (property == Block.
FlowDirectionProperty
)
848
FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.
FlowDirectionProperty
);
895
if (property == Block.
FlowDirectionProperty
)
System\Windows\Documents\TextRangeEditLists.cs (10)
228
Paragraph.
FlowDirectionProperty
, precedingList.GetValue(Paragraph.
FlowDirectionProperty
));
388
FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.
FlowDirectionProperty
);
390
TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.
FlowDirectionProperty
, flowDirection);
550
object listFlowDirectionValue = unindentedList.GetValue(Paragraph.
FlowDirectionProperty
);
572
TextRangeEdit.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)
1972
FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.
FlowDirectionProperty
);
1973
FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.
FlowDirectionProperty
);