IXlsFormControls
COM interface ( getting help with interfaces )

 

interface IXlsFormControls : IDispatch
{
  [id(1),propget]  HRESULT Buttons([out, retval]IXlsFormButtons** collection);
  [id(2),propget]  HRESULT CheckBoxes([out, retval]IXlsFormCheckBoxes** collection);
  [id(3),propget]  HRESULT RadioBoxes([out, retval]IXlsFormRadioBoxes** collection);
  [id(4),propget]  HRESULT ComboBoxes([out, retval]IXlsFormComboBoxes** collection);
  [id(5),propget]  HRESULT SpinControls([out, retval]IXlsFormSpinControls** collection);
  [id(6),propget]  HRESULT ListBoxes([out, retval]IXlsFormListBoxes** collection);
  [id(7),propget]  HRESULT GroupBoxes([out, retval]IXlsFormGroupBoxes** collection);
  [id(8),propget]  HRESULT StaticLabels([out, retval]IXlsFormLabels** collection);
  [id(9),propget]  HRESULT Scrollbars([out, retval]IXlsFormScrollbars** collection);
  [id(10),propget] HRESULT EditBoxes([out, retval]IXlsFormEditBoxes** collection);
  [id(11),propget] HRESULT DialogBoxes([out, retval]IXlsFormDialogBoxes** collection);
}

 

HRESULT Buttons([out, retval]IXlsFormButtons** collection);
retrieves the buttons collection of the form.

HRESULT CheckBoxes([out, retval]IXlsFormCheckBoxes** collection);
retrieves the check box collection of the form.

HRESULT RadioBoxes([out, retval]IXlsFormRadioBoxes** collection);
retrieves the radio box collection of the form.

HRESULT ComboBoxes([out, retval]IXlsFormComboBoxes** collection);
retrieves the combo box collection of the form.

HRESULT SpinControls([out, retval]IXlsFormSpinControls** collection);
retrieves the spin control collection of the form.

HRESULT ListBoxes([out, retval]IXlsFormListBoxes** collection);
retrieves the list box collection of the form.

HRESULT GroupBoxes([out, retval]IXlsFormGroupBoxes** collection);
retrieves the group box collection of the form.

HRESULT StaticLabels([out, retval]IXlsFormLabels** collection);
retrieves the labels collection of the form.

HRESULT Scrollbars([out, retval]IXlsFormScrollbars** collection);
retrieves the scroll bar collection of the form.

HRESULT EditBoxes([out, retval]IXlsFormEditBoxes** collection);
retrieves the edit box collection of the form.

HRESULT DialogBoxes([out, retval]IXlsFormDialogBoxes** collection);
retrieves the dialog box collection of the form.