AclEditor.OnLoad Method
Raises the Load event.
Namespace: Microsoft.SharePoint.WebControls
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Protected Overrides Sub OnLoad ( _
e As EventArgs _
)
'Usage
Dim e As EventArgs
Me.OnLoad(e)
protected override void OnLoad(
EventArgs e
)
Parameters
e
Type: System.EventArgsThe data for the event.
Remarks
This override initializes the child controls of the AclEditor.
Raising an event invokes the event handler through a delegate. The OnLoad method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class. Notes for Inheritors When overriding OnLoad in a derived class, be sure to call the base class's OnLoad method so that registered delegates receive the event.