File: cdwobj.sru
Size: 1000
Date: Mon, 07 Apr 2008 21:31:21 +0200
$PBExportHeader$cdwobj.sru
$PBExportComments$Datawindow Object Type Constants
forward
global type cdwobj from nonvisualobject
end type
end forward

global type cdwobj from nonvisualobject
end type
global cdwobj cdwobj

type variables
//object types
CONSTANT string DATAWINDOW = "datawindow"
CONSTANT string BITMAP = "bitmap"
CONSTANT string BUTTON = "button"
CONSTANT string COLUMN = "column"
CONSTANT string COMPUTE = "compute"
CONSTANT string GRAPH = "graph"
CONSTANT string GROUPBOX = "groupbox"
CONSTANT string LINE = "line"
CONSTANT string OLE = "ole"
CONSTANT string OVAL = "ellipse"
CONSTANT string RECTANGLE = "rectangle"
CONSTANT string REPORT = "report"
CONSTANT string ROUNDRECTANGLE = "roundrectangle"
CONSTANT string TABLEBLOB = "tableblob"
CONSTANT string TEXT = "text"
end variables

on cdwobj.create
call super::create
TriggerEvent( this, "constructor" )
end on

on cdwobj.destroy
TriggerEvent( this, "destructor" )
call super::destroy
end on