IXlsFont |
interface IXlsFont : IDispatch { [id(1), propget] HRESULT Name([out, retval] BSTR* name); [id(1), propput] HRESULT Name([in]BSTR name); [id(2), propget] HRESULT Size([out, retval] double* size); [id(2), propput] HRESULT Size([in]double size); [id(3), propget] HRESULT Bold([out, retval] BOOL* bBold); [id(3), propput] HRESULT Bold([in]BOOL bBold); [id(4), propget] HRESULT Italic([out, retval] BOOL* bItalic); [id(4), propput] HRESULT Italic([in]BOOL bItalic); [id(5), propget] HRESULT Underlined([out, retval] enumUnderline* underlined); [id(5), propput] HRESULT Underlined([in]enumUnderline underlined); [id(6), propget] HRESULT Exponent([out, retval] enumExponent* exponent); [id(6), propput] HRESULT Exponent([in]enumExponent exponent); [id(7), propget] HRESULT Strikeout([out, retval] BOOL* bStrikeout); [id(7), propput] HRESULT Strikeout([in]BOOL bStrikeout); [id(8), propget] HRESULT Color([out, retval] int* nRGB); [id(8), propput] HRESULT Color([in]int nRGB); [id(9), propget] HRESULT Family([out, retval] enumFontFamily* family); [id(9), propput] HRESULT Family([in]enumFontFamily family); [id(10),propget] HRESULT Charset([out, retval] enumFontCharset* charset); [id(10),propput] HRESULT Charset([in]enumFontCharset charset); }
HRESULT Name([out, retval] BSTR* name);
HRESULT Name([in]BSTR name);
HRESULT Size([out, retval] double* size);
HRESULT Size([in]double size);
HRESULT Bold([out, retval] BOOL* bBold);
HRESULT Bold([in]BOOL bBold);
HRESULT Italic([out, retval] BOOL* bItalic);
HRESULT Italic([in]BOOL bItalic);
HRESULT Underlined([out, retval] enumUnderline* underlined);
HRESULT Underlined([in]enumUnderline underlined);
HRESULT Exponent([out, retval] enumExponent* exponent);
HRESULT Exponent([in]enumExponent exponent);
HRESULT Strikeout([out, retval] BOOL* bStrikeout);
HRESULT Strikeout([in]BOOL bStrikeout);
HRESULT Color([out, retval] int* nRGB);
HRESULT Color([in]int nRGB);
HRESULT Family([out, retval] enumFontFamily* family);
HRESULT Family([in]enumFontFamily family);
HRESULT Charset([out, retval] enumFontCharset* charset);
HRESULT Charset([in]enumFontCharset charset);