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)
262
get { return (FlowDirection)GetValue(
FlowDirectionProperty
); }
263
set { SetValue(
FlowDirectionProperty
, value); }
System\Windows\Documents\FlowDocument.cs (1)
351
Block.
FlowDirectionProperty
.AddOwner(_typeofThis);
System\Windows\Documents\List.cs (2)
285
Paragraph.
FlowDirectionProperty
, firstBlock.GetValue(Paragraph.
FlowDirectionProperty
));
System\Windows\Documents\ListItem.cs (1)
228
Block.
FlowDirectionProperty
.AddOwner(typeof(ListItem));
System\Windows\Documents\TableCell.cs (1)
247
Block.
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)
759
if (property == Block.
FlowDirectionProperty
)
811
if (property == Block.
FlowDirectionProperty
)
849
FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.
FlowDirectionProperty
);
896
if (property == Block.
FlowDirectionProperty
)
System\Windows\Documents\TextRangeEditLists.cs (10)
229
Paragraph.
FlowDirectionProperty
, precedingList.GetValue(Paragraph.
FlowDirectionProperty
));
387
FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.
FlowDirectionProperty
);
389
TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.
FlowDirectionProperty
, flowDirection);
549
object listFlowDirectionValue = unindentedList.GetValue(Paragraph.
FlowDirectionProperty
);
571
TextRangeEdit.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)
1988
FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.
FlowDirectionProperty
);
1989
FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.
FlowDirectionProperty
);