Astyle.

IndentLabels Property

Summary

true if label statements should be indented.
    The default:

    int foospace()
    {
        while (isFoo)
        {
            ...
            goto error;

    error:
            ...
        }
    }

    becomes:

    int foospace()
    {
        while (isFoo)
        {
            ...
            goto error;

        error:
            ...
        }
    }
Assembly
NAnt.Contrib.dll
Namespace
NAnt.Contrib.Tasks
Containing Type
Astyle

Syntax

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

Attributes

Type Description
TaskAttribute
BooleanValidator

Value

Type Description
bool