FireDAC.Comp.Client.TFDCustomCommand.Values

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: public
Source:
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
Unit: FireDAC.Comp.Client
Parent: TFDCustomCommand

Delphi

property Values[const AParamNames: String]: Variant read GetValues write SetValues; default;

C++

__property System::Variant Values[const System::UnicodeString AParamNames] = {read=GetValues, write=SetValues/*, default*/};

Description

Provides access to the values of all parameters in the command.

The Values property gets / sets the values of the parameters in a command. AParamNames represents the only parameter name or the list of parameter names separated by ';' to read from or write to.

Values accepts and returns a Variant, so it can handle and convert parameters of any data type. Because Values is the default property for TFDCommand, the property name may be omitted when referencing this property.

See Also