memo

Help Contents Win memo
win.playfile picbutton

win.memo :x :y :w :h


Definition:

to win.memo :x :y :w :h

	local "type "handle

	make "type "memo

	to onclick 
	end

	to ondrawimage 
	end

	make "handle dll.win.wincreatememo

	to hide
		output dll.win.winhide
	end

	to show
		output dll.win.winshow
	end

	to enable
		output dll.win.winenable
	end

	to disable
		output dll.win.windisable
	end

	to text
		output dll.win.winmemotext
	end

	to settext :text
		output dll.win.winmemosettext
	end
end

win.playfile picbutton