IXlsTextBoxes
COM interface ( getting help with interfaces )

 

interface IXlsTextBoxes : IDispatch
{
  [id(1),propget] HRESULT Count([out, retval]int* nbtextboxes);
  [id(2),propget] HRESULT Item([in]int i, [out, retval]IXlsTextBox** tb);
  [id(3),propget] HRESULT ItemByName([in]BSTR name, [out, retval]IXlsTextBox** tb);
}

 

HRESULT Count([out, retval]int* nbtextboxes);
returns how many text boxes are stored.

HRESULT Item([in]int i, [out, retval]IXlsTextBox** tb);
returns the i-th stored text box.

HRESULT ItemByName([in]BSTR name, [out, retval]IXlsTextBox** tb);
returns the stored text box from its name.