 | CSYSiDisplayTaskDialogUI Method |
Show a Windows TaskDialog UI (see https://msdn.microsoft.com/en-us/library/windows/desktop/bb760441(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 iDisplayTaskDialogUI(
CGXNETCore gxNetShared,
string title,
string main_instruction,
string content,
int common_buttons,
CLST custom_button_lst,
int icon,
string footer,
int footer_icon,
string verification_check_text,
ref int verification_checked,
string expanded_information,
string collapsed_control_text,
string expanded_control_text
)
public static int iDisplayTaskDialogUI(
CGXNETCore gxNetShared,
string title,
string main_instruction,
string content,
int common_buttons,
CLST custom_button_lst,
int icon,
string footer,
int footer_icon,
string verification_check_text,
ref int verification_checked,
string expanded_information,
string collapsed_control_text,
string expanded_control_text
)
Public Shared Function iDisplayTaskDialogUI (
gxNetShared As CGXNETCore,
title As String,
main_instruction As String,
content As String,
common_buttons As Integer,
custom_button_lst As CLST,
icon As Integer,
footer As String,
footer_icon As Integer,
verification_check_text As String,
ByRef verification_checked As Integer,
expanded_information As String,
collapsed_control_text As String,
expanded_control_text As String
) As Integer
Public Shared Function iDisplayTaskDialogUI (
gxNetShared As CGXNETCore,
title As String,
main_instruction As String,
content As String,
common_buttons As Integer,
custom_button_lst As CLST,
icon As Integer,
footer As String,
footer_icon As Integer,
verification_check_text As String,
ByRef verification_checked As Integer,
expanded_information As String,
collapsed_control_text As String,
expanded_control_text As String
) As Integer
public:
static int iDisplayTaskDialogUI(
CGXNETCore^ gxNetShared,
String^ title,
String^ main_instruction,
String^ content,
int common_buttons,
CLST^ custom_button_lst,
int icon,
String^ footer,
int footer_icon,
String^ verification_check_text,
int% verification_checked,
String^ expanded_information,
String^ collapsed_control_text,
String^ expanded_control_text
)
public:
static int iDisplayTaskDialogUI(
CGXNETCore^ gxNetShared,
String^ title,
String^ main_instruction,
String^ content,
int common_buttons,
CLST^ custom_button_lst,
int icon,
String^ footer,
int footer_icon,
String^ verification_check_text,
int% verification_checked,
String^ expanded_information,
String^ collapsed_control_text,
String^ expanded_control_text
)
static member iDisplayTaskDialogUI :
gxNetShared : CGXNETCore *
title : string *
main_instruction : string *
content : string *
common_buttons : int *
custom_button_lst : CLST *
icon : int *
footer : string *
footer_icon : int *
verification_check_text : string *
verification_checked : int byref *
expanded_information : string *
collapsed_control_text : string *
expanded_control_text : string -> int
static member iDisplayTaskDialogUI :
gxNetShared : CGXNETCore *
title : string *
main_instruction : string *
content : string *
common_buttons : int *
custom_button_lst : CLST *
icon : int *
footer : string *
footer_icon : int *
verification_check_text : string *
verification_checked : int byref *
expanded_information : string *
collapsed_control_text : string *
expanded_control_text : string -> int
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - title
- Type: SystemString
Title - main_instruction
- Type: SystemString
Main instruction (empty string for none) - content
- Type: SystemString
Content (empty string for none) - common_buttons
- Type: SystemInt32
Common Buttons, one of <define>TD_BUTTON</define> - custom_button_lst
- Type: GeoEngine.Core.GXNetXCLST
Optional LST of custom buttons. Name in LST will be used for button text, while value should be an int to return. Pass (LST)0 to only use standard button flags. - icon
- Type: SystemInt32
Icon <define>TD_ICON</define> - footer
- Type: SystemString
Footer (empty string for none) - footer_icon
- Type: SystemInt32
Footer Icon <define>TD_ICON</define> - verification_check_text
- Type: SystemString
Verification checkbox text (empty string for none) - verification_checked
- Type: SystemInt32
Verification checkbox checked (in/out) - expanded_information
- Type: SystemString
Expanded information (empty string for none) - collapsed_control_text
- Type: SystemString
Collapsed control text for expanded information (empty string for default; 'More') - expanded_control_text
- Type: SystemString
Expanded control text for expanded information (empty string for default; 'Less')
Return Value
Type:
Int32Button ID. One of <define>TD_ID</define> or the int value from LST of custom buttons.
See Also