4 overrides of Indent
PresentationCore (1)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
351public override double Indent
PresentationFramework (3)
MS\Internal\Text\LineProperties.cs (3)
95public override double Indent { get { return 0.0; } } 370public override double Indent { get { return _lp._textIndent; } } 452public override double Indent { get { return _lp.Indent; } }
5 references to Indent
PresentationCore (3)
MS\Internal\TextFormatting\GenericTextProperties.cs (1)
268_indent = textParagraphProperties.Indent;
MS\Internal\TextFormatting\TextFormatterImp.cs (1)
465ArgumentOutOfRangeException.ThrowIfGreaterThan(paragraphProperties.Indent, Constants.RealInfiniteWidth, "paragraphProperties.Indent");
MS\Internal\TextFormatting\TextProperties.cs (1)
39_indent = TextFormatterImp.RealToIdeal(paragraphProperties.Indent);
PresentationFramework (2)
MS\Internal\PtsHost\Line.cs (1)
264_indent = lineProps.Indent;
MS\Internal\Text\LineProperties.cs (1)
452public override double Indent { get { return _lp.Indent; } }