 | CSYSiShellExecute Method |
Call Microsoft ShellExecute function (See `MSDN <https://msdn.microsoft.com/en-us/library/windows/desktop/bb762153(v=vs.85).aspx>`_)
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static int iShellExecute(
CGXNETCore gxNetShared,
string verb,
string file,
string parameters,
string directory,
int show
)
public static int iShellExecute(
CGXNETCore gxNetShared,
string verb,
string file,
string parameters,
string directory,
int show
)
Public Shared Function iShellExecute (
gxNetShared As CGXNETCore,
verb As String,
file As String,
parameters As String,
directory As String,
show As Integer
) As Integer
Public Shared Function iShellExecute (
gxNetShared As CGXNETCore,
verb As String,
file As String,
parameters As String,
directory As String,
show As Integer
) As Integer
public:
static int iShellExecute(
CGXNETCore^ gxNetShared,
String^ verb,
String^ file,
String^ parameters,
String^ directory,
int show
)
public:
static int iShellExecute(
CGXNETCore^ gxNetShared,
String^ verb,
String^ file,
String^ parameters,
String^ directory,
int show
)
static member iShellExecute :
gxNetShared : CGXNETCore *
verb : string *
file : string *
parameters : string *
directory : string *
show : int -> int
static member iShellExecute :
gxNetShared : CGXNETCore *
verb : string *
file : string *
parameters : string *
directory : string *
show : int -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - verb
- Type: SystemString
Verb - file
- Type: SystemString
File - parameters
- Type: SystemString
Parameters - directory
- Type: SystemString
Directory - show
- Type: SystemInt32
<define>SHELL_EXECUTE</define>
Return Value
Type:
Int32return value of ShellExecute as documented on MSDN
See Also