Vcl.CmAdmCtl.TCOMAdminCatalogObject.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value[const bstrPropName: WideString]: OleVariant read Get_Value  write Set_Value;

C++

__property System::OleVariant Value[const System::WideString bstrPropName] = {read=Get_Value, write=Set_Value};

Properties

Type Visibility Source Unit Parent
property public
Vcl.CmAdmCtl.pas
Vcl.CmAdmCtl.hpp
Vcl.CmAdmCtl TCOMAdminCatalogObject

Description

Represents a the value of a named property of the catalog object.

Use Value to get or set a named property of this item.

bstrPropName is the name of the property to get or set. Valid property names depend on the type of the item (the collection to which the item belongs). To determine the available properties for this object, check the Microsoft documentation for the specific collection to which this item belongs.

Tip: Use the IsPropertyReadOnly and IsPropertyWriteOnly methods to determine whether you can get or set a specific property.

See Also