Creates Select command.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
protected virtual BaseGridEditPage..::..GridEditCommand CreateSelectCommand(
	string entityFieldName,
	string value
)
Visual Basic
Protected Overridable Function CreateSelectCommand ( 
	entityFieldName As String,
	value As String
) As BaseGridEditPage..::..GridEditCommand
Visual C++
protected:
virtual BaseGridEditPage..::..GridEditCommand CreateSelectCommand(
	String^ entityFieldName, 
	String^ value
)
F#
abstract CreateSelectCommand : 
        entityFieldName : string * 
        value : string -> BaseGridEditPage..::..GridEditCommand 
override CreateSelectCommand : 
        entityFieldName : string * 
        value : string -> BaseGridEditPage..::..GridEditCommand 

Parameters

entityFieldName
Type: System..::..String
Entity field name e.g. UserID, etc.
value
Type: System..::..String
Value of that field

Return Value

Type: BaseGridEditPage..::..GridEditCommand
Grid edit command with the select command

See Also