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)

Syntax

'Declaration
Protected Overridable Sub OnLoadForMobile ( _
    e As EventArgs _
)
'Usage
Dim e As EventArgs

Me.OnLoadForMobile(e)
protected virtual void OnLoadForMobile(
    EventArgs e
)

Parameters

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.

See also

Reference

WebPartMobileAdapter class

WebPartMobileAdapter members

Microsoft.SharePoint.WebPartPages namespace