SaveButton.OnBubbleEvent Method
Handles or re-raises a bubbled event.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Protected Overrides Function OnBubbleEvent ( _
source As Object, _
e As EventArgs _
) As Boolean
'Usage
Dim source As Object
Dim e As EventArgs
Dim returnValue As Boolean
returnValue = Me.OnBubbleEvent(source, _
e)
protected override bool OnBubbleEvent(
Object source,
EventArgs e
)
Parameters
source
Type: System.ObjectThe source of the event.
e
Type: System.EventArgsAn EventArgs that contains the event data.
Return Value
Type: System.Boolean
true if the event is handled; otherwise, false (in which case the event is bubbled up to the parent control). The default is false.
Remarks
This method is invoked when the child Microsoft ASP.NET 2.0 Button control of the SaveButton calls the RaiseBubbleEvent() method.