  | CDBrGetRegSymbSetting Method  | 
 Get a real-valued REG setting from a symbol reg
 
    Namespace: 
   GeoEngine.Core.GXNet
    Assembly:
   geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2025.1.0.25
Syntaxpublic double rGetRegSymbSetting(
	int symb,
	string name
)
public double rGetRegSymbSetting(
	int symb,
	string name
)
Public Function rGetRegSymbSetting ( 
	symb As Integer,
	name As String
) As Double
Public Function rGetRegSymbSetting ( 
	symb As Integer,
	name As String
) As Double
public:
double rGetRegSymbSetting(
	int symb, 
	String^ name
)
public:
double rGetRegSymbSetting(
	int symb, 
	String^ name
)
member rGetRegSymbSetting : 
        symb : int * 
        name : string -> float 
member rGetRegSymbSetting : 
        symb : int * 
        name : string -> float 
Parameters
- symb
 - Type: SystemInt32
Symbol, <define>NULLSYMB</define> for the database REG - name
 - Type: SystemString
REG entry name 
Return Value
Type: 
DoubleThe setting, or <define>rDUMMY</define> if not found or not convertable.
Remarks
Same as GetRegSymbSetting_DB, but converts
the setting automatically to a real 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