T
ESRI.ArcGIS.Mobile.Client
Generic ActionItemEventArgs Class
Members  See Also  Send Feedback
ESRI.ArcGIS.Mobile.Client Namespace : Generic ActionItemEventArgs Class

Event arguments that are specific to an ActionItemEventHandler. These event arguments allow you to modify an IList of action items.

Object Model


Syntax

Visual Basic (Declaration) 
Public Class ActionItemEventArgs(Of T) 
   Inherits EventArgs
C# 
public class ActionItemEventArgs<T> : EventArgs 

Type Parameters

T

Remarks

ActionItemEventArgs provides a IList of ActionItems that you can manipulate (add/remove), and the Context within which the associated event is fired.

Normally the Context is used to determine the IPage that fires the event. For example, if you have a customized page "MyPage" that inherits FeatureListPage, and you want to add a new FeatureActionItem to selected features on this page, you can check the Context property when the event gets fired, and see if it's "MyPage". If so, add the new FeatureActionItem. This allows you to manipulate the IList of FeatureActionItems only on pages you desire, not on other pages that also inherits FeatureListPage (such as SearchResultsPage, WorkListPage, etc.).

Inheritance Hierarchy

System.Object
   System.EventArgs
      ESRI.ArcGIS.Mobile.Client.ActionItemEventArgs
         ESRI.ArcGIS.Mobile.Client.FeatureActionEventArgs

Requirements

Namespace: ESRI.ArcGIS.Mobile.Client

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

Assembly: ESRI.ArcGIS.Mobile.Client (in ESRI.ArcGIS.Mobile.Client.dll)

See Also