Argsparse
|
Properties | |
string | Description [get] |
Description of the argument as it should appear in help write-up. | |
string | ValuePlaceholder [get] |
Value placeholder will be used in synopsis and appear in help write-up, e.g. program [options] <value-placeholder> ... value-placeholder Description of the argument. | |
ArgumentMultiplicity | Multiplicity [get] |
Codifies information about what number or range of numbers of parts for this argument is to be expected. | |
|
get |
Description of the argument as it should appear in help write-up.
Implemented in Argparse.Argument< C, V >.
|
get |
Codifies information about what number or range of numbers of parts for this argument is to be expected.
Defaults to ArgumentMultiplicity.SpecificCount with ArgumentMultiplicity.SpecificCount.Number set to 1 and ArgumentMultiplicity.SpecificCount.IsRequired set to true.
Only one AllThatFollow argument is allowed per parser. Only one non-required argument is allowed per parser. Do not mix non-required SpecificCount arguments with AllThatFollow
Implemented in Argparse.Argument< C, V >.
|
get |
Value placeholder will be used in synopsis and appear in help write-up, e.g. program [options] <value-placeholder> ... value-placeholder Description of the argument.
Implemented in Argparse.Argument< C, V >.