Click or drag to resize

DObjectGetDouble Method

返回用户文档首页
从DObject中获取与指定键关联的double值。

Namespace: LoongCAD.Util
Assembly: LoongSDKCore (in LoongSDKCore.dll) Version: 2024.0.9.3 (2024.0.9.3)
Syntax
C#
public double GetDouble(
	string key,
	double def = 0
)

Parameters

key  String
要获取的键。
def  Double  (Optional)
如果找不到键或值为null,则返回的默认double值,默认为0.0。

Return Value

Double
如果找到键且值可转换为double,则返回转换后的double值;否则返回默认值。
See Also