Astyle.

PadAll Property

Summary

true to pad operators and parenthesis.
    if (isFoo)
        a = bar((b-c)*a,*d--);

    becomes:

    if ( isFoo )
        a = bar( ( b - c ) * a, *d-- );
Assembly
NAnt.Contrib.dll
Namespace
NAnt.Contrib.Tasks
Containing Type
Astyle

Syntax

[TaskAttribute("pad-all", Required = false)]
[BooleanValidator()]
public bool PadAll { get; set; }

Attributes

Type Description
TaskAttribute
BooleanValidator

Value

Type Description
bool