C# Class Rock.Web.UI.Controls.CheckinGroupEventArg

An event args class used for reordering a check-in group's locations
Inheritance: System.EventArgs
Mostrar archivo Open project: NewSpring/Rock Class Usage Examples

Public Methods

Method Description
CheckinGroupEventArg ( System.Guid groupGuid ) : System

Initializes a new instance of the CheckinGroupEventArg class.

CheckinGroupEventArg ( System.Guid groupGuid, string dataKey, int oldIndex, int newIndex ) : System

Initializes a new instance of the CheckinGroupEventArg class.

Method Details

CheckinGroupEventArg() public method

Initializes a new instance of the CheckinGroupEventArg class.
public CheckinGroupEventArg ( System.Guid groupGuid ) : System
groupGuid System.Guid The check-in group unique identifier.
return System

CheckinGroupEventArg() public method

Initializes a new instance of the CheckinGroupEventArg class.
public CheckinGroupEventArg ( System.Guid groupGuid, string dataKey, int oldIndex, int newIndex ) : System
groupGuid System.Guid The check-in group unique identifier.
dataKey string The check-in group location Id.
oldIndex int The old index.
newIndex int The new index.
return System