 | CSYSIiPrompt Method (CGXNETCore, String, String, Int32) |
Asks the User to enter a string.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static int IiPrompt(
CGXNETCore gxNetShared,
string title,
ref string result,
int size
)
public static int IiPrompt(
CGXNETCore gxNetShared,
string title,
ref string result,
int size
)
Public Shared Function IiPrompt (
gxNetShared As CGXNETCore,
title As String,
ByRef result As String,
size As Integer
) As Integer
Public Shared Function IiPrompt (
gxNetShared As CGXNETCore,
title As String,
ByRef result As String,
size As Integer
) As Integer
public:
static int IiPrompt(
CGXNETCore^ gxNetShared,
String^ title,
String^% result,
int size
)
public:
static int IiPrompt(
CGXNETCore^ gxNetShared,
String^ title,
String^% result,
int size
)
static member IiPrompt :
gxNetShared : CGXNETCore *
title : string *
result : string byref *
size : int -> int
static member IiPrompt :
gxNetShared : CGXNETCore *
title : string *
result : string byref *
size : int -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - title
- Type: SystemString
Title of the window - result
- Type: SystemString
Buffer to place the user's string - size
- Type: SystemInt32
Size of the buffer
Return Value
Type:
Int32
0 - User hit OK
1 - user hit CANCEL
Remarks
The User string is displayed as the default value in the prompt.
Empty the user string if no default is needed.
See Also