Propriétés

Une propriété désigne une information élémentaire disponible pour l'objet, telle que le nom, le code, le commentaire, etc.

Exemple

'How to get a property value in a variable from table 'Customer
Dim Table_name
'Assuming MyTable is a variable that already contains a 'table object
Get the name of MyTable in Table_name variable
Table_name = MyTable.name
'Display MyTable name in output window
output MyTable.name
'How to change a property value : change value for name 'of MyTable
MyTable.name = 'new name'


Created October 8, 2009. Send feedback on this help topic to Sybase Technical Publications: pubs@sybase.com