HideAction.HideAction

HideAction(Annotation)

Initializes a new instance of the HideAction class for the specified annotation.

public HideAction(Annotation annotation)
ParameterTypeDescription
annotationAnnotationAn annotation to be hidden.

See Also


HideAction(Annotation, bool)

Initializes a new instance of the HideAction class for the specified annotation and invisibility flag.

public HideAction(Annotation annotation, bool isHidden)
ParameterTypeDescription
annotationAnnotationAn annotation to be hidden or shown.
isHiddenBooleanA flag indicating whether to hide the annotation (true) or show it (false).

See Also


HideAction(string)

Initializes a new instance of the HideAction class for the specified field name.

public HideAction(string fieldName)
ParameterTypeDescription
fieldNameStringA text string giving the fully qualified field name of an interactive form field.

See Also


HideAction(string, bool)

Initializes a new instance of the HideAction class for the specified field name and invisibility flag.

public HideAction(string fieldName, bool isHidden)
ParameterTypeDescription
fieldNameStringA text string giving the fully qualified field name of an interactive form field.
isHiddenBooleanA flag indicating whether to hide the field (true) or show it (false).

See Also


HideAction(Annotation[])

Initializes a new instance of the HideAction class for the specified annotations.

public HideAction(Annotation[] annotations)
ParameterTypeDescription
annotationsAnnotation[]An array of annotations to be hidden.

See Also


HideAction(Annotation[], bool)

Initializes a new instance of the HideAction class for the specified annotations and for invisibility flag.

public HideAction(Annotation[] annotations, bool isHidden)
ParameterTypeDescription
annotationsAnnotation[]An array of annotations to be hidden or shown.
isHiddenBooleanA flag indicating whether to hide the annotations (true) or show it (false).

See Also


HideAction(string[])

Initializes a new instance of the HideAction class for the specified field names.

public HideAction(string[] names)
ParameterTypeDescription
namesString[]An array of strings giving the fully qualified field names of an interactive form fields.

See Also


HideAction(string[], bool)

Initializes a new instance of the HideAction class for the specified field names and for invisibility flag.

public HideAction(string[] names, bool isHidden)
ParameterTypeDescription
namesString[]An array of strings giving the fully qualified field names of an interactive form fields.
isHiddenBooleanA flag indicating whether to hide the fields (true) or show it (false).

See Also