xtd 0.2.0
image_lock_mode.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace drawing {
13  namespace imaging {
20  enum class image_lock_mode {
22  read_only = 1,
24  write_only = 2,
26  read_write = 3,
29  };
30  }
31  }
32 }
33 
37 };
Specifies that the buffer used for reading or writing pixel data is allocated by the user...
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
image_lock_mode
Specifies flags that are passed to the flags parameter of the xtd::drawing::bitmap::lock_bits method...
Definition: image_lock_mode.h:20
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
Specifies that a portion of the image is locked for writing.
Specifies that a portion of the image is locked for reading or writing.
Provides the registration struct for enumerations.
Definition: enum_register.h:36
Specifies that a portion of the image is locked for reading.