System.TypInfo.SetUnicodeStrProp

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure SetUnicodeStrProp(Instance: TObject; const PropName: string;
const Value: UnicodeString);
procedure SetUnicodeStrProp(Instance: TObject; PropInfo: PPropInfo; const Value: UnicodeString);

C++

extern DELPHI_PACKAGE void __fastcall SetUnicodeStrProp _DEPRECATED_ATTRIBUTE1("use SetStrProp") (System::TObject* Instance, const System::UnicodeString PropName, const System::UnicodeString Value)/* overload */;

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.TypInfo.pas
System.TypInfo.hpp
System.TypInfo System.TypInfo

Description

Warning: SetUnicodeStrProp is deprecated. Please use SetStrProp.

Sets the value of a component property that is of UnicodeString type.

SetUnicodeStrProp uses Delphi's RTTI (Run Time Type Information) to set the value of a component's property where that property is a UnicodeString.

In one form of this function, the property is looked up by using the data in the PropInfo parameter. GetPropInfo and GetPropList can be used to obtain such a record.

In the other form of this function, the name of the property, PropName, is explicitly given.

In both forms of the function, the new property value is defined by Value.

The intrinsic value of this function is to allow setting of component properties without the need to hard code the property name. This allows mass visual component processing at run time.

Use SetPropValue to set a property value where the type is unknown. This would normally be used when using GetPropValue from another property.

Note: If the specified property does not exist, or is not a published property, an EPropertyError exception is thrown.

See Also