Class ApplicationLoadEventArgs

Index

Constructor methods

Methods

Constructor methods

constructor(components: any, isPartialLoad: boolean): ApplicationLoadEventArgs

Initializes a new instance of the ApplicationLoadEventArgs class.

Parameters

  • components: any
          The list of components that were created since the last time the load event was raised.
    
  • isPartialLoad: boolean
          true to indicate that the event is a partial-page update.
    

Returns

ApplicationLoadEventArgs

Methods

public get_components(): Component[]

Gets an array of all the components that were created since the last time the load event was raised.

Returns

Component[]

An array of all the components that were created since the last time the load event was raised.

public get_isPartialLoad(): boolean

Returns a value that indicates whether the page is engaged in a partial-page update.

Returns

boolean

true if the page is engaged in a partial-page update; otherwise, false.