MapperKernelDoCommand Method  | 
 
            Execute the specified command.  
            Typically 
commandName is the 
ID of one of the 
MapperCommand
            items added to the mapper's 
Commands collection.
            To invoke a command by its 
Command, pass a 1 in the 
flags parameter.
            
 
    Namespace: 
   NetQuarry.Data
    Assembly:
   EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxpublic virtual ExtResults DoCommand(
	string commandName,
	int flags,
	Object param
)
Public Overridable Function DoCommand ( 
	commandName As String,
	flags As Integer,
	param As Object
) As ExtResults
Parameters
- commandName
 - Type: SystemString
The name of the command to execute. - flags
 - Type: SystemInt32
Modifier flags, rarely used.  Normally you should specify 0. - param
 - Type: SystemObject
Command-specific parameter. 
Return Value
Type: 
ExtResultsThe command result, typically from the resulting 
FieldButtonClick or 
MapperCommand event.
Implements
IMapperDoCommand(String, Int32, Object)
See Also