NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

UserControlDesigner.Exec

Executes a command.

[Visual Basic]
Overridable Public Function Exec( _
   ByRef pguidCmdGroup As Guid, _
   ByVal nCmdID As Integer, _
   ByVal nCmdexecopt As Integer, _
   ByVal pvaIn() As Object, _
   ByVal pvaOut As Integer _
) As Integer
[C#]
public virtual int Exec(
   ref Guid pguidCmdGroup,
   int nCmdID,
   int nCmdexecopt,
   object[] pvaIn,
   int pvaOut
);
[C++]
public: virtual int Exec(
   Guid** pguidCmdGroup,
   int nCmdID,
   int nCmdexecopt,
   Object* pvaIn[],
   int pvaOut
);
[JScript]
public function Exec(
   pguidCmdGroup : Guid,
   nCmdID : int,
   nCmdexecopt : int,
   pvaIn : Object[],
   pvaOut : int
) : int;

Parameters

pguidCmdGroup
The GUID of the command group.
nCmdID
[To be supplied.]
nCmdexecopt
[To be supplied.]
pvaIn
[To be supplied.]
pvaOut
[To be supplied.]

Return Value

The return value of the command.

See Also

UserControlDesigner Class | UserControlDesigner Members | System.Web.UI.Design Namespace