Lines Matching refs:xProp
61 sal_Bool ScUnoHelpFunctions::GetBoolProperty( const uno::Reference<beans::XPropertySet>& xProp, in GetBoolProperty() argument
65 if ( xProp.is() ) in GetBoolProperty()
69 uno::Any aAny(xProp->getPropertyValue( rName )); in GetBoolProperty()
87 sal_Int32 ScUnoHelpFunctions::GetLongProperty( const uno::Reference<beans::XPropertySet>& xProp, in GetLongProperty() argument
91 if ( xProp.is() ) in GetLongProperty()
96 xProp->getPropertyValue( rName ) >>= nRet; in GetLongProperty()
107 sal_Int32 ScUnoHelpFunctions::GetEnumProperty( const uno::Reference<beans::XPropertySet>& xProp, in GetEnumProperty() argument
111 if ( xProp.is() ) in GetEnumProperty()
115 uno::Any aAny(xProp->getPropertyValue( rName )); in GetEnumProperty()
138 const Reference<beans::XPropertySet>& xProp, const OUString& rName, const OUString& rDefault ) in GetStringProperty() argument
141 if (!xProp.is()) in GetStringProperty()
146 Any any = xProp->getPropertyValue(rName); in GetStringProperty()