Click or drag to resize
KaxUploadControlObjectsVisibility Property
Gets or sets the value indicating which control objects will be displayed.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public virtual ControlObjectsVisibility ControlObjectsVisibility { get; set; }

Property Value

Type: ControlObjectsVisibility
The default value is ControlObjectsVisibility.Default. You can set any combination of the enum values.
Remarks
ControlObjectVisibility enum members
MemberDescription
NoneOnly the file inputs will be visible.
CheckBoxesDisplay checkboxes for selecting a file input.
RemoveButtonsDisplay buttons for removing a file input.
ClearButtonsDisplay buttons for clearing a file input.
AddButtonDisplay button for adding a file input.
DeleteSelectedButtonDisplay button for removing the file inputs with checked checkboxes.
DefaultCheckBoxes | RemoveButtons | AddButton | DeleteSelectedButton
AllCheckBoxes | RemoveButtons | ClearButtons | AddButton | DeleteSelectedButton
Examples
This example demostrates how to display only the Add and Remove buttons on a KaxUpload control.
KaxUpload1.ControlObjectsVisibility = Kettic.AspNetControls.ControlObjectsVisibility.AddButton | 
                                      Kettic.AspNetControls.ControlObjectsVisibility.RemoveButtons;
See Also