Vcl.CmAdmCtl.TCOMAdminCatalogObject.IsPropertyWriteOnly

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  IsPropertyWriteOnly(const bstrPropName: WideString): WordBool;

C++

System::WordBool __fastcall IsPropertyWriteOnly(const System::WideString bstrPropName);

Properties

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

Description

Indicates whether a specified property is write-only.

Call IsPropertyWriteOnly to determine whether you can read the value of a specific property using the Value property. If IsPropertyWriteOnly returns true, you can use Value to set the property's value but not read it. If IsPropertyWriteOnly returns false, you can use Value to read the property's value as well.

bstrPropName is the name of the property.

See Also