Extract values from row object. Note that the
first column is 1, not 0.
Title: Obtain value of column 1 as string.*/
for ( int index = 1 ; index <= size; index++ ) {
Object propertyValue = values.getObject( index, null );
if ( !values.wasNull() && !(propertyValue instanceof com.sun.star.uno.Any ))
m_propValues.add( propertyValue );
else
m_propValues.add( "[ Property not found ]" );
}
}