Lines Matching refs:xField

142 …32 _nFieldPos, const Reference< ::com::sun::star::beans::XPropertySet >& xField, sal_Int32 nTypeId)  in CreateControl()  argument
147 if (xField != m_xField) in CreateControl()
150 m_xField = xField; in CreateControl()
151 xField->getPropertyValue(FM_PROP_FORMATKEY) >>= m_nFormatKey; in CreateControl()
153 m_bReadOnly = ::comphelper::getBOOL(xField->getPropertyValue(FM_PROP_ISREADONLY)); in CreateControl()
154 m_bAutoValue = ::comphelper::getBOOL(xField->getPropertyValue(FM_PROP_AUTOINCREMENT)); in CreateControl()
155 … m_nFieldType = (sal_Int16)::comphelper::getINT32(xField->getPropertyValue(FM_PROP_FIELDTYPE)); in CreateControl()
431 String DbGridColumn::GetCellText(const Reference< ::com::sun::star::sdb::XColumn >& xField, const R… in GetCellText() argument
434 if (xField.is()) in GetCellText()
438 aText = pTextCell->GetText(xField, xFormatter); in GetCellText()
448 Reference< ::com::sun::star::sdb::XColumn > xField; in GetCurrentFieldValue() local
452 xField = xRow->GetField(m_nFieldPos).getColumn(); in GetCurrentFieldValue()
454 return xField; in GetCurrentFieldValue()
584 Reference< XPropertySet > xField; in TYPEINIT1() local
585 xColModelProps->getPropertyValue( FM_PROP_BOUNDFIELD ) >>= xField; in TYPEINIT1()
586 if ( xField.is() ) in TYPEINIT1()
588 … m_pFieldChangeBroadcaster = new ::comphelper::OPropertyChangeMultiplexer(this, xField); in TYPEINIT1()
3066 Reference< ::com::sun::star::beans::XPropertySet > xField = m_rColumn.GetField(); in Update() local
3067 if (!xField.is()) in Update()
3071 xField->getPropertyValue(FM_PROP_NAME) >>= aName; in Update()
3598 Reference< ::com::sun::star::sdb::XColumn > xField(m_pColumn->GetCurrentFieldValue()); in UpdateFromColumn() local
3599 if (xField.is()) in UpdateFromColumn()
3600 m_pCellControl->UpdateFromField(xField, m_pColumn->GetParent().getNumberFormatter()); in UpdateFromColumn()
3790 Reference< ::com::sun::star::sdb::XColumn > xField(m_pColumn->GetCurrentFieldValue()); in getText() local
3791 if (xField.is()) in getText()
3792 aText = GetText(xField, m_pColumn->GetParent().getNumberFormatter()); in getText()