summaryrefslogtreecommitdiff
path: root/vbahelper/source/msforms/vbacontrol.hxx
diff options
context:
space:
mode:
authorNoel Power <noel.power@novell.com>2012-03-20 15:35:30 +0000
committerNoel Power <noel.power@novell.com>2012-03-20 17:29:19 +0000
commit092d6d9d6f9e6d79dd99d5f502ff39398622c2e1 (patch)
tree5a8959507b19b52681fa146787ada69038fe8ce9 /vbahelper/source/msforms/vbacontrol.hxx
parentf626ff59b229ce7aec2f2313936133c53d70781f (diff)
add vba support for BackColor, AutoSize, Locked attributes bnc#749960
Diffstat (limited to 'vbahelper/source/msforms/vbacontrol.hxx')
-rw-r--r--vbahelper/source/msforms/vbacontrol.hxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/vbahelper/source/msforms/vbacontrol.hxx b/vbahelper/source/msforms/vbacontrol.hxx
index 9076a3e38071..06d61c518b0e 100644
--- a/vbahelper/source/msforms/vbacontrol.hxx
+++ b/vbahelper/source/msforms/vbacontrol.hxx
@@ -114,6 +114,14 @@ public:
//XHelperInterface
virtual rtl::OUString& getServiceImplName();
virtual css::uno::Sequence<rtl::OUString> getServiceNames();
+ //General helper methods for properties ( may or maynot be relevant for all
+ //controls
+ sal_Int32 getBackColor() throw (css::uno::RuntimeException);
+ void setBackColor( sal_Int32 nBackColor ) throw (css::uno::RuntimeException);
+ sal_Bool getAutoSize() throw (css::uno::RuntimeException);
+ void setAutoSize( sal_Bool bAutoSize ) throw (css::uno::RuntimeException);
+ sal_Bool getLocked() throw (css::uno::RuntimeException);
+ void setLocked( sal_Bool bAutoSize ) throw (css::uno::RuntimeException);
};