File: u_explorer_sample1_props_main.sru
Size: 1209
Date: Mon, 07 Apr 2008 21:33:09 +0200
$PBExportHeader$u_explorer_sample1_props_main.sru
forward
global type u_explorer_sample1_props_main from u_explorer
end type
type uo_1 from u_icon within u_explorer_sample1_props_main
end type
type st_1 from u_st within u_explorer_sample1_props_main
end type
end forward

global type u_explorer_sample1_props_main from u_explorer
uo_1 uo_1
st_1 st_1
end type
global u_explorer_sample1_props_main u_explorer_sample1_props_main

on u_explorer_sample1_props_main.create
int iCurrent
call super::create
this.uo_1=create uo_1
this.st_1=create st_1
iCurrent=UpperBound(this.Control)
this.Control[iCurrent+1]=this.uo_1
this.Control[iCurrent+2]=this.st_1
end on

on u_explorer_sample1_props_main.destroy
call super::destroy
destroy(this.uo_1)
destroy(this.st_1)
end on

type uo_1 from u_icon within u_explorer_sample1_props_main
integer x = 1481
integer y = 32
integer taborder = 20
boolean #anchorright = true
string #resourcename = "FAVORITES"
end type

on uo_1.destroy
call u_icon::destroy
end on

type st_1 from u_st within u_explorer_sample1_props_main
integer x = 55
integer y = 48
integer width = 690
string text = "This is the main property page."
end type