4 overrides of Indent
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
354public override double Indent
PresentationFramework (3)
MS\Internal\Text\LineProperties.cs (3)
100public override double Indent { get { return 0.0; } } 375public override double Indent { get { return _lp._textIndent; } } 457public override double Indent { get { return _lp.Indent; } }
5 references to Indent
PresentationCore (3)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
271_indent = textParagraphProperties.Indent;
MS\Internal\TextFormatting\TextFormatterImp.cs (1)
489ArgumentOutOfRangeException.ThrowIfGreaterThan(paragraphProperties.Indent, Constants.RealInfiniteWidth, "paragraphProperties.Indent");
MS\Internal\TextFormatting\TextProperties.cs (1)
46_indent = TextFormatterImp.RealToIdeal(paragraphProperties.Indent);
PresentationFramework (2)
MS\Internal\PtsHost\Line.cs (1)
282_indent = lineProps.Indent;
MS\Internal\Text\LineProperties.cs (1)
457public override double Indent { get { return _lp.Indent; } }