 | CDBSetRegSymbSetting Method |
Set a REG string setting in a symbol reg
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetRegSymbSetting(
int symb,
string name,
string setting
)
public void SetRegSymbSetting(
int symb,
string name,
string setting
)
Public Sub SetRegSymbSetting (
symb As Integer,
name As String,
setting As String
)
Public Sub SetRegSymbSetting (
symb As Integer,
name As String,
setting As String
)
public:
void SetRegSymbSetting(
int symb,
String^ name,
String^ setting
)
public:
void SetRegSymbSetting(
int symb,
String^ name,
String^ setting
)
member SetRegSymbSetting :
symb : int *
name : string *
setting : string -> unit
member SetRegSymbSetting :
symb : int *
name : string *
setting : string -> unit
Parameters
- symb
- Type: SystemInt32
Symbol, <define>NULLSYMB</define> for the database REG - name
- Type: SystemString
REG entry name - setting
- Type: SystemString
Setting
Remarks
The symbol REG is used to store a variety of attribute
about the symbol. Following a conventionally used entries:
UNITS - channel units
CLASS - symbol class name (i.e. "Assay")
_PJ_ipj - projection blob name
_PJ_x - projection coordinate pair
_PJ_y
_PJ_name - projection GXF-style info
_PJ_ellipsoid
_PJ_projection
_PJ_units
_PJ_datum_transform
This is a convenient but low-performance way to get/set REG
settings. If performance is an issue, and more than one
setting is to be Get and or Set, use the REG directly.
See Also