1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version>$Revision: 4482 $</version>
// </file>
namespace ICSharpCode.NRefactory.PrettyPrinter
{
/// <summary>
/// Description of PrettyPrintOptions.
/// </summary>
public class AbstractPrettyPrintOptions
{
char indentationChar = '\t';
int tabSize = 4;
int indentSize = 4;
string eolMarker = System.Environment.NewLine;
public char IndentationChar {
get {
return indentationChar;
}
set {
indentationChar = value;
}
}
public int TabSize {
get {
return tabSize;
}
set {
tabSize = value;
}
}
public int IndentSize {
get {
return indentSize;
}
set {
indentSize = value;
}
}
public string EolMarker {
get {
return eolMarker;
}
set {
eolMarker = value;
}
}
}
}
|