 | CSYSRegistrySetVal Method |
Set/create a registry value
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic static void RegistrySetVal(
CGXNETCore gxNetShared,
int domain,
string key,
string sub_key,
string value
)
public static void RegistrySetVal(
CGXNETCore gxNetShared,
int domain,
string key,
string sub_key,
string value
)
Public Shared Sub RegistrySetVal (
gxNetShared As CGXNETCore,
domain As Integer,
key As String,
sub_key As String,
value As String
)
Public Shared Sub RegistrySetVal (
gxNetShared As CGXNETCore,
domain As Integer,
key As String,
sub_key As String,
value As String
)
public:
static void RegistrySetVal(
CGXNETCore^ gxNetShared,
int domain,
String^ key,
String^ sub_key,
String^ value
)
public:
static void RegistrySetVal(
CGXNETCore^ gxNetShared,
int domain,
String^ key,
String^ sub_key,
String^ value
)
static member RegistrySetVal :
gxNetShared : CGXNETCore *
domain : int *
key : string *
sub_key : string *
value : string -> unit
static member RegistrySetVal :
gxNetShared : CGXNETCore *
domain : int *
key : string *
sub_key : string *
value : string -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - domain
- Type: SystemInt32
<define>REG_DOMAIN</define> - key
- Type: SystemString
Key to set - sub_key
- Type: SystemString
Name of Subkey within key - value
- Type: SystemString
Value for Subkey
Remarks
This function will create the subkey and key if either do not
already exist.
See Also