 | CARCDHsPromptForESRISymbol Method (IWin32Window, String, Int32, String, Int32, Int32, Int32) |
Prompt the user to select an ESRI symbol and return it as an XML string. The output string will be empty if the user cancels the dialog.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void sPromptForESRISymbol(
IWin32Window hwnd,
string h_wnd,
int input_xml_string,
ref string xml,
int xml_size,
ref int fill_color,
ref int edge_color
)
public static void sPromptForESRISymbol(
IWin32Window hwnd,
string h_wnd,
int input_xml_string,
ref string xml,
int xml_size,
ref int fill_color,
ref int edge_color
)
Public Shared Sub sPromptForESRISymbol (
hwnd As IWin32Window,
h_wnd As String,
input_xml_string As Integer,
ByRef xml As String,
xml_size As Integer,
ByRef fill_color As Integer,
ByRef edge_color As Integer
)
Public Shared Sub sPromptForESRISymbol (
hwnd As IWin32Window,
h_wnd As String,
input_xml_string As Integer,
ByRef xml As String,
xml_size As Integer,
ByRef fill_color As Integer,
ByRef edge_color As Integer
)
public:
static void sPromptForESRISymbol(
IWin32Window^ hwnd,
String^ h_wnd,
int input_xml_string,
String^% xml,
int xml_size,
int% fill_color,
int% edge_color
)
public:
static void sPromptForESRISymbol(
IWin32Window^ hwnd,
String^ h_wnd,
int input_xml_string,
String^% xml,
int xml_size,
int% fill_color,
int% edge_color
)
static member sPromptForESRISymbol :
hwnd : IWin32Window *
h_wnd : string *
input_xml_string : int *
xml : string byref *
xml_size : int *
fill_color : int byref *
edge_color : int byref -> unit
static member sPromptForESRISymbol :
hwnd : IWin32Window *
h_wnd : string *
input_xml_string : int *
xml : string byref *
xml_size : int *
fill_color : int byref *
edge_color : int byref -> unit
Parameters
- hwnd
- Type: System.Windows.FormsIWin32Window
Window handle - h_wnd
- Type: SystemString
Initial symbol that you want displayed when the dialog is launched (use "" if none) - input_xml_string
- Type: SystemInt32
(This parameter is ignored if an initial symbol was specified) Initial symbol type that you want displayed when the dialog is launched (0 for Fill, 1 for Line) - xml
- Type: SystemString
Returned XML string representing the symbol that was chosen by the user - xml_size
- Type: SystemInt32
Length of output XML string - fill_color
- Type: SystemInt32
RGBA representation of fill color to be set - edge_color
- Type: SystemInt32
RGBA representation of edge color to be set
See Also