set_datablock_property
Declaration
void set_datablock_property(char dataBlockName, char propertyName, char schemaName, char schemaObjectName);Description
Parameters
Return Value
Example
void cb2.schema_object(char oldValue) {
if (:cb2.object_type == 'TABLE' or :cb2.object_type == 'VIEW') then
set_datablock_property('table', 'data-source-name', :cb1.schema_name, : cb2.schema_object);
refresh_block('table');
show_block('table');
else
hide_block('table');
end if;
}Last updated