CreateShellCommandOptionsAllowWhiteSpaceValueSeparator Property |
Gets or sets a value indicating whether the value of arguments may be separated from the name by white space.
Namespace:
Ookii.CommandLine
Assembly:
Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 2.3.0
Syntaxpublic bool AllowWhiteSpaceValueSeparator { get; set; }
Public Property AllowWhiteSpaceValueSeparator As Boolean
Get
Set
Dim instance As CreateShellCommandOptions
Dim value As Boolean
value = instance.AllowWhiteSpaceValueSeparator
instance.AllowWhiteSpaceValueSeparator = value
public:
property bool AllowWhiteSpaceValueSeparator {
bool get ();
void set (bool value);
}
Property Value
Type:
Boolean if white space is allowed to separate an argument name and its value;
if only the colon (:) is allowed.
The default value is
.
See Also