The amount of virtual storage in bytes that has been allocated for the DataWindow object.
DataWindows
PowerBuilder dot notation:
dw_control.Object.DataWindow.Storage
Describe argument:
"DataWindow.Storage"
You can check this property in the script for the RetrieveRow event in the DataWindow control and cancel a query if it is consuming too much storage.
string setting
setting = dw1.Object.DataWindow.Storage
setting = dw1.Describe("DataWindow.Storage")
IF Long(setting) > 50000 THEN RETURN 1