System.Tether.AppProfile.TCustomLocalItem.IsPublic

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsPublic: Boolean read FIsPublic write SetIsPublic;

C++

__property bool IsPublic = {read=FIsPublic, write=SetIsPublic, nodefault};

Properties

Type Visibility Source Unit Parent
property published
System.Tether.AppProfile.pas
System.Tether.AppProfile.hpp
System.Tether.AppProfile TCustomLocalItem

Description

Specifies whether application profiles containing this local item must share it (True) or not (False) with remote profiles.

Local items are public (IsPublic is True) by default. You can make IsPublic False if you do not want a local item registered in an application profile to be shared with remote profiles.

Application profiles may create temporary local items to send or receive data. For example, application profiles create temporary local items when you send strings or receive streams. These temporary local items are not public (IsPublic is False).

See Also