WriteUsageOptionsArgumentDescriptionIndent Property |
Gets or sets the number of characters by which to indent the all but the first line of argument descriptions.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic int ArgumentDescriptionIndent { get; set; }
Public Property ArgumentDescriptionIndent As Integer
Get
Set
Dim instance As WriteUsageOptions
Dim value As Integer
value = instance.ArgumentDescriptionIndent
instance.ArgumentDescriptionIndent = value
public:
property int ArgumentDescriptionIndent {
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 argument descriptions. The default value is 8.
Remarks
This property should be set to a value appropriate for the format string specified by the ArgumentDescriptionFormat 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