 | CDBiGetRegSymbSetting Method |
Get an integer-valued REG setting from a symbol reg
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic int iGetRegSymbSetting(
int symb,
string name
)
public int iGetRegSymbSetting(
int symb,
string name
)
Public Function iGetRegSymbSetting (
symb As Integer,
name As String
) As Integer
Public Function iGetRegSymbSetting (
symb As Integer,
name As String
) As Integer
public:
int iGetRegSymbSetting(
int symb,
String^ name
)
public:
int iGetRegSymbSetting(
int symb,
String^ name
)
member iGetRegSymbSetting :
symb : int *
name : string -> int
member iGetRegSymbSetting :
symb : int *
name : string -> int
Parameters
- symb
- Type: SystemInt32
Symbol, <define>NULLSYMB</define> for the database REG - name
- Type: SystemString
REG entry name
Return Value
Type:
Int32The setting, or <define>iDUMMY</define> if not found or not convertable.
Remarks
Same as GetRegSymbSetting_DB, but converts
the setting automatically to an integer value.
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