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)
276
get { return (FlowDirection)GetValue(
FlowDirectionProperty
); }
277
set { SetValue(
FlowDirectionProperty
, value); }
src\Framework\System\Windows\Documents\FlowDocument.cs (1)
359
Block.
FlowDirectionProperty
.AddOwner(_typeofThis);
src\Framework\System\Windows\Documents\List.cs (2)
295
Paragraph.
FlowDirectionProperty
, firstBlock.GetValue(Paragraph.
FlowDirectionProperty
));
src\Framework\System\Windows\Documents\ListItem.cs (1)
236
Block.
FlowDirectionProperty
.AddOwner(typeof(ListItem));
src\Framework\System\Windows\Documents\TableCell.cs (1)
267
Block.
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)
763
if (property == Block.
FlowDirectionProperty
)
815
if (property == Block.
FlowDirectionProperty
)
853
FlowDirection flowDirection = (FlowDirection)block.GetValue(Block.
FlowDirectionProperty
);
900
if (property == Block.
FlowDirectionProperty
)
src\Framework\System\Windows\Documents\TextRangeEditLists.cs (10)
233
Paragraph.
FlowDirectionProperty
, precedingList.GetValue(Paragraph.
FlowDirectionProperty
));
391
FlowDirection flowDirection = (FlowDirection)listToRemove.GetValue(Paragraph.
FlowDirectionProperty
);
393
TextRangeEdit.SetParagraphProperty(range.Start, range.End, Paragraph.
FlowDirectionProperty
, flowDirection);
553
object listFlowDirectionValue = unindentedList.GetValue(Paragraph.
FlowDirectionProperty
);
575
TextRangeEdit.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)
1999
FlowDirection renderScopeFlowDirection = (FlowDirection)this.TextView.RenderScope.GetValue(Block.
FlowDirectionProperty
);
2000
FlowDirection paragraphFlowDirection = (FlowDirection)cursorPosition.GetValue(Block.
FlowDirectionProperty
);