System.Classes.TBinaryWriter.Null

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class property Null: TBinaryWriter read GetNull;

C++

/* static */ __property TBinaryWriter* Null = {read=GetNull};

Properties

Type Visibility Source Unit Parent
property public
System.Classes.pas
System.Classes.hpp
System.Classes TBinaryWriter

Description

Creates a null TBinaryWriter. Use Null to create a null TBinaryWriter.

For example, if we have the ABinaryWriter TBinaryWriter instance, the code should look like this (for Delphi):

ABinaryWriter := TBinaryWriter.Null;

or if you want to make a null TBinaryWriter from an existing TBinaryWriter instance:

ABinaryWriter := ABinaryWriter.Null;

See Also