diff options
author | Noel Power <noel.power@novell.com> | 2012-03-20 15:35:30 +0000 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2012-03-20 17:29:19 +0000 |
commit | 092d6d9d6f9e6d79dd99d5f502ff39398622c2e1 (patch) | |
tree | 5a8959507b19b52681fa146787ada69038fe8ce9 /vbahelper/source/msforms/vbatextbox.hxx | |
parent | f626ff59b229ce7aec2f2313936133c53d70781f (diff) |
add vba support for BackColor, AutoSize, Locked attributes bnc#749960
Diffstat (limited to 'vbahelper/source/msforms/vbatextbox.hxx')
-rw-r--r-- | vbahelper/source/msforms/vbatextbox.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/vbahelper/source/msforms/vbatextbox.hxx b/vbahelper/source/msforms/vbatextbox.hxx index bdbff16439ea..25b3a047c0ac 100644 --- a/vbahelper/source/msforms/vbatextbox.hxx +++ b/vbahelper/source/msforms/vbatextbox.hxx @@ -54,6 +54,13 @@ public: virtual void SAL_CALL setBorderStyle( sal_Int32 nBorderStyle ) throw (css::uno::RuntimeException); virtual sal_Int32 SAL_CALL getTextLength() throw (css::uno::RuntimeException); virtual css::uno::Reference< ov::msforms::XNewFont > SAL_CALL getFont() throw (css::uno::RuntimeException); + virtual sal_Int32 getBackColor() throw (css::uno::RuntimeException); + virtual void SAL_CALL setBackColor( sal_Int32 nBackColor ) throw (css::uno::RuntimeException); + virtual sal_Bool SAL_CALL getAutoSize() throw (css::uno::RuntimeException); + virtual void SAL_CALL setAutoSize( sal_Bool bAutoSize ) throw (css::uno::RuntimeException); + virtual sal_Bool SAL_CALL getLocked() throw (css::uno::RuntimeException); + virtual void SAL_CALL setLocked( sal_Bool bAutoSize ) throw (css::uno::RuntimeException); + // XDefaultProperty rtl::OUString SAL_CALL getDefaultPropertyName( ) throw (css::uno::RuntimeException) { return ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Value")); } //XHelperInterface |