Poznámka:
Přístup k této stránce vyžaduje autorizaci. Můžete se zkusit přihlásit nebo změnit adresáře.
Přístup k této stránce vyžaduje autorizaci. Můžete zkusit změnit adresáře.
Fires when the checkbutton's state changes.
Syntax
Visual Basic Overridable Protected Function
OnCheckChange(
ByVal oSender As object,
ByVal oEvent As EventArgs
) As boolC# protected virtual bool
OnCheckChange(
object oSender,
EventArgs oEvent
);Managed C++ protected: virtual bool
OnCheckChange(
object oSender,
EventArgs oEvent
);JScript protected function
OnCheckChange(
oSender : object,
oEvent : EventArgs
);
Parameters
oSender Required. The source object. oEvent Required. The event parameters.
Return Value
Returns one of the following possible values.
falseEvent does not bubble. trueEvent bubbles.
Remarks
Calls the CheckChange event handlers.
Applies To
TOOLBARCHECKBUTTON, TOOLBARCHECKGROUP
See Also