Skip to main content

CreateNull

Creates a null value, an analogue of null in JS.

note

For the .docbuilder file the CDocBuilderContext.CreateNull method is not used.

Syntax

def CreateNull(self) -> CDocBuilderValue

Parameters

COM only

NameTypeDescription
resultI_DOCBUILDER_VALUE**The pointer to store the created null value

Example

builder = docbuilder.CDocBuilder()
context = builder.GetContext()
content = context.CreateNull()