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)
1655
(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
));
389
FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.
FlowDirectionProperty
);
391
TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.
FlowDirectionProperty
, flowDirection);
551
object listFlowDirectionValue = unindentedList.GetValue(Paragraph.
FlowDirectionProperty
);
573
TextRangeEdit.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)
1973
FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.
FlowDirectionProperty
);
1974
FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.
FlowDirectionProperty
);