4 overrides of Indent
PresentationCore (1)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
355public override double Indent
PresentationFramework (3)
src\Framework\MS\Internal\Text\LineProperties.cs (3)
103public override double Indent { get { return 0.0; } } 378public override double Indent { get { return _lp._textIndent; } } 460public override double Indent { get { return _lp.Indent; } }
5 references to Indent
PresentationCore (3)
Core\CSharp\MS\Internal\TextFormatting\GenericTextProperties.cs (1)
272_indent = textParagraphProperties.Indent;
Core\CSharp\MS\Internal\TextFormatting\TextFormatterImp.cs (1)
505if (paragraphProperties.Indent > Constants.RealInfiniteWidth)
Core\CSharp\MS\Internal\TextFormatting\TextProperties.cs (1)
48_indent = TextFormatterImp.RealToIdeal(paragraphProperties.Indent);
PresentationFramework (2)
src\Framework\MS\Internal\PtsHost\Line.cs (1)
285_indent = lineProps.Indent;
src\Framework\MS\Internal\Text\LineProperties.cs (1)
460public override double Indent { get { return _lp.Indent; } }