System.Tether.AppProfile.TResourceValue.DataType

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DataType: TResourceType read FDataType write FDataType;

C++

__property TResourceType DataType = {read=FDataType, write=FDataType};

Properties

Type Visibility Source Unit Parent
property public
System.Tether.AppProfile.pas
System.Tether.AppProfile.hpp
System.Tether.AppProfile TResourceValue

Description

Data type of the value that TResourceValue wraps.

DataType determines which method you can use to obtain the value that TResourceValue wraps:

Type Method

TResourceType.Boolean

AsBoolean

TResourceType.Integer

AsInteger

TResourceType.Int64

AsInt64

TResourceType.Single

AsSingle

TResourceType.Double

AsDouble

TResourceType.String

AsString

See Also