Lines Matching refs:xProps

51 … uno::Reference< table::XCellRange >& xRange, const uno::Reference< beans::XPropertySet >& xProps )  in lcl_setValidationProps()  argument
54 xRangeProps->setPropertyValue( VALIDATION , uno::makeAny( xProps ) ); in lcl_setValidationProps()
60 uno::Reference< beans::XPropertySet > xProps( xRange, uno::UNO_QUERY_THROW ); in lcl_getValidationProps() local
62 xValProps.set( xProps->getPropertyValue( VALIDATION ), uno::UNO_QUERY_THROW ); in lcl_getValidationProps()
69 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in getIgnoreBlank() local
71 xProps->getPropertyValue( IGNOREBLANK ) >>= bBlank; in getIgnoreBlank()
78 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in setIgnoreBlank() local
79 xProps->setPropertyValue( IGNOREBLANK, uno::makeAny( _ignoreblank ) ); in setIgnoreBlank()
80 lcl_setValidationProps( m_xRange, xProps ); in setIgnoreBlank()
86 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getInCellDropdown() local
88 xProps->getPropertyValue( SHOWLIST ) >>= nShowList; in getInCellDropdown()
98 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps(m_xRange) ); in setInCellDropdown() local
99 xProps->setPropertyValue( SHOWLIST, uno::makeAny( nDropDown ) ); in setInCellDropdown()
100 lcl_setValidationProps( m_xRange, xProps ); in setInCellDropdown()
106 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getShowInput() local
108 xProps->getPropertyValue( SHOWINPUT ) >>= bShowInput; in getShowInput()
115 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps(m_xRange) ); in setShowInput() local
116 xProps->setPropertyValue( IGNOREBLANK, uno::makeAny( _showinput ) ); in setShowInput()
117 lcl_setValidationProps( m_xRange, xProps ); in setShowInput()
123 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getShowError() local
125 xProps->getPropertyValue( SHOWERROR ) >>= bShowError; in getShowError()
132 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in setShowError() local
133 xProps->setPropertyValue( SHOWERROR, uno::makeAny( _showerror ) ); in setShowError()
134 lcl_setValidationProps( m_xRange, xProps ); in setShowError()
140 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getErrorTitle() local
142 xProps->getPropertyValue( ERRORTITLE ) >>= sErrorTitle; in getErrorTitle()
149 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in setErrorTitle() local
150 xProps->setPropertyValue( ERRORTITLE, uno::makeAny( _errormessage ) ); in setErrorTitle()
151 lcl_setValidationProps( m_xRange, xProps ); in setErrorTitle()
157 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getInputMessage() local
159 xProps->getPropertyValue( INPUTMESS ) >>= sMsg; in getInputMessage()
166 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in setInputMessage() local
167 xProps->setPropertyValue( INPUTMESS, uno::makeAny( _inputmessage ) ); in setInputMessage()
168 lcl_setValidationProps( m_xRange, xProps ); in setInputMessage()
174 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getInputTitle() local
176 xProps->getPropertyValue( INPUTTITLE ) >>= sString; in getInputTitle()
183 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in setInputTitle() local
184 xProps->setPropertyValue( INPUTTITLE, uno::makeAny( _inputtitle ) ); in setInputTitle()
185 lcl_setValidationProps( m_xRange, xProps ); in setInputTitle()
191 uno::Reference< beans::XPropertySet > xProps = lcl_getValidationProps( m_xRange ); in getErrorMessage() local
193 xProps->getPropertyValue( ERRORMESS ) >>= sString; in getErrorMessage()
200 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in setErrorMessage() local
201 xProps->setPropertyValue( ERRORMESS, uno::makeAny( _errormessage ) ); in setErrorMessage()
202 lcl_setValidationProps( m_xRange, xProps ); in setErrorMessage()
210 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in Delete() local
211 uno::Reference< sheet::XSheetCondition > xCond( xProps, uno::UNO_QUERY_THROW ); in Delete()
212 xProps->setPropertyValue( IGNOREBLANK, uno::makeAny( sal_True ) ); in Delete()
213 xProps->setPropertyValue( SHOWINPUT, uno::makeAny( sal_True ) ); in Delete()
214 xProps->setPropertyValue( SHOWERROR, uno::makeAny( sal_True ) ); in Delete()
215 xProps->setPropertyValue( ERRORTITLE, uno::makeAny( sBlank ) ); in Delete()
216 xProps->setPropertyValue( INPUTMESS, uno::makeAny( sBlank) ); in Delete()
217 xProps->setPropertyValue( ALERTSTYLE, uno::makeAny( sheet::ValidationAlertStyle_STOP) ); in Delete()
218 xProps->setPropertyValue( STYPE, uno::makeAny( sheet::ValidationType_ANY ) ); in Delete()
223 lcl_setValidationProps( m_xRange, xProps ); in Delete()
228 uno::Reference< beans::XPropertySet > xProps( lcl_getValidationProps( m_xRange ) ); in Add() local
229 uno::Reference< sheet::XSheetCondition > xCond( xProps, uno::UNO_QUERY_THROW ); in Add()
232 xProps->getPropertyValue( STYPE ) >>= nValType; in Add()
253 xProps->setPropertyValue( STYPE, uno::makeAny(nValType )); in Add()
260 xProps->setPropertyValue( STYPE, uno::makeAny(nValType )); in Add()
289 xProps->setPropertyValue( ALERTSTYLE, uno::makeAny( eStyle ) ); in Add()
303 lcl_setValidationProps( m_xRange, xProps ); in Add()