TCustomVariantType.Clear

Clear a value

Declaration

Source position: variants.pp line 203

public 
  procedure Clear(var V: tvardata);  Virtual;  Abstract;

Description

Clear is called when a variant value must be cleared, by VarClear. This is an abstract method that must be overridden and implemented in descendent classes. When the method returns, the type of the variant record must be varClear

If the custom variant value used some heap memory (for intance in an object) then this is the place to release that memory.

Errors

If this method is not overridden, an abstract error will be thrown.

See also

Name Description
TCustomVariantType.Copy Copy a custom variant value
TCustomVariantType.IsClear Is the custom value unassigned ?
VarClear Clear the variant value