Vcl.CmAdmCtl.TCOMAdminCatalogObject.IsPropertyReadOnly

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  IsPropertyReadOnly(const bstrPropName: WideString): WordBool;

C++

System::WordBool __fastcall IsPropertyReadOnly(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 read-only.

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

bstrPropName is the name of the property.

See Also