FMX.Graphics.TMapAccess

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TMapAccess = (Read, Write, ReadWrite);

C++

enum class DECLSPEC_DENUM TMapAccess : unsigned int { Read, Write, ReadWrite, maRead _DEPRECATED_ATTRIBUTE3("Use TMapAccess.Read")  = 0x0, maWrite _DEPRECATED_ATTRIBUTE3("Use TMapAccess.Write")  = 0x1, maReadWrite _DEPRECATED_ATTRIBUTE3("Use TMapAccess.ReadWrite")  = 0x2 };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics FMX.Graphics

Description

Enumeration type that defines the access to TBitmap data.

The access to bitmap data can be:

  • Read: read-only access.
  • Write: write-only access.
  • ReadWrite: read and write access.

See Also