Skip to main content

GetLength

Returns the length if the CDocBuilderValue object is an array/typed array. Otherwise, returns 0.

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

Syntax

def GetLength(self) -> int

Parameters

NameTypeDescription
resultlong*The returned object length.

Example

builder = docbuilder.CDocBuilder()
context = builder.GetContext()
globalObj = context.GetGlobal()
api = globalObj["Api"]
document = api.Call("GetDocument")
charts = document.Call("GetAllCharts")
length = charts.GetLength()