Astyle.

IndentClass Property

Summary

true if class statements should be indented.
    The default:

    class Foo
    {
    public:
        Foo();
        virtual ~Foo();
    };

    becomes:

    class Foo
    {
        public:
            Foo();
            virtual ~Foo();
    };
Assembly
NAnt.Contrib.dll
Namespace
NAnt.Contrib.Tasks
Containing Type
Astyle

Syntax

[TaskAttribute("indent-classes", Required = false)]
[BooleanValidator()]
public bool IndentClass { get; set; }

Attributes

Type Description
TaskAttribute
BooleanValidator

Value

Type Description
bool