CreateShellCommandOptionsCommandDescriptionIndent Property |
Gets or sets the number of characters by which to indent the all but the first line of command descriptions.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic int CommandDescriptionIndent { get; set; }
Public Property CommandDescriptionIndent As Integer
Get
Set
Dim instance As CreateShellCommandOptions
Dim value As Integer
value = instance.CommandDescriptionIndent
instance.CommandDescriptionIndent = value
public:
property int CommandDescriptionIndent {
int get ();
void set (int value);
}
Property Value
Type:
Int32
The number of characters by which to indent the all but the first line of command descriptions. The default value is 8.
Remarks
This value should be adjusted to match the formatting specified by the CommandDescriptionFormat property.
This value is not used if the maximum line length of the LineWrappingTextWriter to which the usage
is being written is less than 30.
See Also