Chapter Contents |
Previous |
Next |
Extended Table: _putrowLabel |
Details | |
Example |
Details |
The _putrowLabel method, which is normally used when subclassing extended tables, is not called by SCL code; it is called by the extended table object whenever an object is modified or selected in an extended table. By default, the _putrowLabel method runs the PUTROW section of the SCL program.
Example |
This method can be overridden if you need to perform some pre- or post-processing with respect to the PUTROW section. For example, if you want to process some information both before and after the PUTROW section of the SCL program runs, you can override the _putrowLabel method of the Extended Table class and write your method similar to this:
length _method_ $ 40; PUTROW: method; /* perform preprocessing */ /* some SCL statements here; */ /* run the PUTROW section of the SCL program */ call super( _self_, _method_ ); /* perform post-processing */ /* more SCL statements here; */ endmethod;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.