System.Variants.VarIsByRef

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function VarIsByRef(const V: Variant): Boolean;

C++

extern DELPHI_PACKAGE bool __fastcall VarIsByRef(const System::Variant &V);

Properties

Type Visibility Source Unit Parent
function public
System.Variants.pas
System.Variants.hpp
System.Variants System.Variants

Description

Indicates whether the specified variant's value is by reference.

VarIsByRef returns true if the given variant's type code includes the includes the varByRef bit. Otherwise, the function result is false.

See Also