IControlAdapter.OnInit(EventArgs) Method

Definition

Called after an object, such as a form or a page, is initialized. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 void OnInit(EventArgs ^ e);
public void OnInit (EventArgs e);
abstract member OnInit : EventArgs -> unit
Public Sub OnInit (e As EventArgs)

Parameters

e
EventArgs

An object (defined by EventArgs) that contains event data.

Remarks

You can override this method to set device-specific properties. Inheriting classes can override this method to perform other tasks. If this method is overridden in an inheriting class, you must call the base implementation.

Applies to

See also