.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

46 lines
859 B

// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Mike Krüger" email="mike@icsharpcode.net"/>
// <version>$Revision$</version>
// </file>
namespace ICSharpCode.NRefactory.PrettyPrinter
{
/// <summary>
/// Description of PrettyPrintOptions.
/// </summary>
public class AbstractPrettyPrintOptions
{
char indentationChar = '\t';
int tabSize = 4;
int indentSize = 4;
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;
}
}
}
}