首页 > lang > last 
 en fr de es it nl pl pt pt_BR mk sq ca hu cs tr ar fa id vi ko ja ru zh eo
前一个  下一个  编辑  重命名  撤销  搜索  管理  
文档  
警告! 该页面未翻译。  参见英文版 
LAST
LAST

Returns a reference to the object that raised the last event.

Example

DIM hButton[3] AS Button

hButton[0] = NEW Button(ME) AS "MyButtons"
hButton[0].Text = "Red";

hButton[1] = NEW Button(ME) AS "MyButtons"
hButton[1].Text = "Green"

hButton[2] = NEW Button(ME) AS "MyButtons"
hButton[2].Text = "Blue"

...

PUBLIC SUB MyButtons_Click()

  PRINT LAST.Text

END

参见

Object & Class Management