Click or drag to resize
CSYSiDisplayTaskDialogUI Method
Show a Windows TaskDialog UI (see https://msdn.microsoft.com/en-us/library/windows/desktop/bb760441(v=vs.85).aspx).

Available since Oasis montaj version: 9.3
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Syntax
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
)

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: Int32
Button ID. One of <define>TD_ID</define> or the int value from LST of custom buttons.
See Also