WebPartMobileAdapter.OnLoadForMobile Method
Replaces the OnLoad(EventArgs) method of the control that is being adapted when the control is on a WebPartMobilePage.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Protected Overridable Sub OnLoadForMobile ( _
e As EventArgs _
)
'Usage
Dim e As EventArgs
Me.OnLoadForMobile(e)
protected virtual void OnLoadForMobile(
EventArgs e
)
Parameters
e
Type: System.EventArgsAn object that contains data for the event.
Remarks
The default implementation only calls the base OnLoad(EventArgs) method.
Do not call this method from your own code. The Microsoft SharePoint Foundation mobile adaption framework will call it as part of the Load event handling.
Notes to Inheritors
Override this method when you need additional loading behavior for the control when it is used on a mobile device.
Important
Your override must always call the base adapter class’s OnLoad(EventArgs) method to ensure that the Load event of the control that is being adapted is raised.