CommandLineArgumentIsHidden Property

Gets or sets a value that indicates whether the argument is hidden from the usage help.

Definition

Namespace: Ookii.CommandLine
Assembly: Ookii.CommandLine (in Ookii.CommandLine.dll) Version: 4.2.0+a4d3631e4dcc0970081ed435288efdebc1325f83
C#
public bool IsHidden { get; }

Property Value

Boolean
if the argument is hidden from the usage help; otherwise, . The default value is .

Remarks

A hidden argument will not be included in the usage syntax or the argument description list, even if DescriptionListFilterModeAll is used. It does not affect whether the argument can be used.

This property is always for positional or required arguments, which may not be hidden.

See Also