IXlsTableVisualComponent
COM interface ( getting help with interfaces )

 

interface IXlsTableVisualComponent : IDispatch
{
  [id(1),propput] HRESULT Column([in] BSTR Name, [in] IXlsTableColumn* column);
  [id(2),propput] HRESULT Formula([in] BSTR Name, [in] BSTR pvValue);
  [id(3)]         HRESULT Apply();
}

 

HRESULT Column([in] BSTR Name, [in] IXlsTableColumn* column);
sets the column for the named parameter. Mutually exclusive to passing a formula.

HRESULT Formula([in] BSTR Name, [in] BSTR pvValue);
sets the value for the named parameter. The value can be a single value, a cell reference, an area or a general formula. Mutually exclusive to passing a column.

HRESULT Apply();
applies all formulas in order to create the visual component instance.