Lines Matching refs:setPropertyValue
125 …m_masterForm.setPropertyValue( "ActiveConnection", _databaseDocument.defaultConnection().getXConne… in impl_createForms()
126 … m_masterForm.setPropertyValue( "CommandType", new Integer( com.sun.star.sdb.CommandType.TABLE ) ); in impl_createForms()
127 m_masterForm.setPropertyValue( "Command", "master" ); in impl_createForms()
132 …m_detailForm.setPropertyValue( "ActiveConnection", _databaseDocument.defaultConnection().getXConne… in impl_createForms()
133 … m_detailForm.setPropertyValue( "CommandType", new Integer( com.sun.star.sdb.CommandType.TABLE ) ); in impl_createForms()
134 m_detailForm.setPropertyValue( "Command", "detail" ); in impl_createForms()
154 m_detailForm.setPropertyValue( "MasterFields", new String[] { "ID1", "ID2" } ); in checkMultipleKeys()
155 m_detailForm.setPropertyValue( "DetailFields", new String[] { "FK_ID1", "FK_ID2" } ); in checkMultipleKeys()
247 m_masterForm.setPropertyValue( "Command", "categories" ); in checkDetailFormDefaults()
248 m_masterForm.setPropertyValue( "CommandType", new Integer( CommandType.TABLE ) ); in checkDetailFormDefaults()
252 …m_detailForm.setPropertyValue( "Command", "SELECT \"ID\", \"Name\", \"CategoryID\" FROM \"products… in checkDetailFormDefaults()
253 m_detailForm.setPropertyValue( "CommandType", new Integer( CommandType.COMMAND ) ); in checkDetailFormDefaults()
254 m_detailForm.setPropertyValue( "MasterFields", new String[] { "ID" } ); in checkDetailFormDefaults()
255 m_detailForm.setPropertyValue( "DetailFields", new String[] { "CategoryID" } ); in checkDetailFormDefaults()
259 gridControlModel.setPropertyValue( "Name", "product list" ); in checkDetailFormDefaults()
263 nameColumn.setPropertyValue( "Width", new Integer( 600 ) ); // 6 cm in checkDetailFormDefaults()
264 nameColumn.setPropertyValue( "DefaultText", "default text" ); in checkDetailFormDefaults()
284 nameColumn.setPropertyValue( "DefaultText", defaultValue ); in checkDetailFormDefaults()
340 column.setPropertyValue( "DataField", _boundField ); in impl_createGridColumn()
341 column.setPropertyValue( "Name", _boundField ); in impl_createGridColumn()
342 column.setPropertyValue( "Label", _boundField ); in impl_createGridColumn()