VisibleRemoteObject.ConfirmDelete


public function ConfirmDelete

Prototype:

public function ConfirmDelete()

Description:

This function is used to confirm the Delete event in an OnDelete event that needs confirmation.

Return value:

This function returns the result of the {SendMessage}(send_message) function. The result is not to be considered important.

Example
	...
	this.OnDelete=OnDestroy;
	...

	public function OnDestroy(Sender, EventData) {
		if (CanDestroy())
			ConfirmDelete();
	}