Link Search Menu Expand Document

DragSource.SetObject Method

Explanation Set the object to drag and drop. If it is already set, it will be overwritten.
Call format source.SetObject( obj )
Return value None
Arguments Object obj Objects to drag and drop
Exception CRS-328 Only objects or properties can be converted
CRS-130 Unable for type conversion
Example of use
    var rec = new Record {
    String s;
    Number n;
    }
    source.SetObject(rec);
    
Related item