Discuss this help topic in SecureBlackbox Forum

TElJsonObject.GetDoubleValue

TElJsonObject     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This topic is under development…

Declaration

[C#]
    double GetDoubleValue(string Name);
    double GetDoubleValue(string Name, double Default);

[VB.NET]
    Function GetDoubleValue(ByVal Name As String) As Double
    Function GetDoubleValue(ByVal Name As String, ByVal Default As Double) As Double

[Pascal]
    function GetDoubleValue(const Name : string) : double;
    function GetDoubleValue(const Name : string; Default : double) : double;

[C++]
    double GetDoubleValue(const std::string &Name);
    double GetDoubleValue(const std::string &Name, double Default);

[PHP]
    double GetDoubleValue(string $Name)
    double GetDoubleValue(string $Name, double $Default)

[Java]
    double getDoubleValue(String Name, double Default);
    double getDoubleValue(String Name);

Parameters

  • Name -
  • Default -

Return value

    …

Description

    (1) Returns the value of a double 'Name' property of the object if it is available. Otherwise a "name not found" exception is raised.
    (2) Otherwise the Default value is returned.

See also:         

Discuss this help topic in SecureBlackbox Forum