Skip to main content

IsDouble

Returns true if the CDocBuilderValue object is a double value.

Please note, that for the .docbuilder file the CDocBuilderValue.IsDouble method is not used.

Syntax

def IsDouble(self) -> bool

Parameters

NameTypeDescription
resultVARIANT_BOOL*Specifies whether the CDocBuilderValue object is a double value.

Example

builder = docbuilder.CDocBuilder()
context = builder.GetContext()
globalObj = context.GetGlobal()
bDouble = globalObj.IsDouble()