IXlsBorder
COM interface ( getting help with interfaces )

 

interface IXlsBorder : IDispatch
{
  [id(1), propput] HRESULT Style([in]enumBorderStyle style);
  [id(2), propput] HRESULT Color([in]int nRGB);
}

 

HRESULT Style([in]enumBorderStyle style);
sets the style for the border. Uses an enumerated style. See enumBorderStyle for more information.

HRESULT Color([in]int nRGB);
sets the color for the border. Uses a 24-bit color number. Examples : 46576438, RGB(200,40,40).