 | CSYSiDisplayQuestionWithCancel Method |
Display a YES/NO/CANCEL type question. This method waits
for the user to hit YES or NO or CANCEL.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static int iDisplayQuestionWithCancel(
CGXNETCore gxNetShared,
string title,
string message
)
public static int iDisplayQuestionWithCancel(
CGXNETCore gxNetShared,
string title,
string message
)
Public Shared Function iDisplayQuestionWithCancel (
gxNetShared As CGXNETCore,
title As String,
message As String
) As Integer
Public Shared Function iDisplayQuestionWithCancel (
gxNetShared As CGXNETCore,
title As String,
message As String
) As Integer
public:
static int iDisplayQuestionWithCancel(
CGXNETCore^ gxNetShared,
String^ title,
String^ message
)
public:
static int iDisplayQuestionWithCancel(
CGXNETCore^ gxNetShared,
String^ title,
String^ message
)
static member iDisplayQuestionWithCancel :
gxNetShared : CGXNETCore *
title : string *
message : string -> int
static member iDisplayQuestionWithCancel :
gxNetShared : CGXNETCore *
title : string *
message : string -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - title
- Type: SystemString
Title of the window - message
- Type: SystemString
Message String
Return Value
Type:
Int32
0 - user selected No
1 - user selected YES
2 - user selected CANCEL
See Also