xtd 0.2.0
Loading...
Searching...
No Matches
image_lock_mode.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace 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};
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
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
@ read_only
The pixel data is read-only.
@ read_write
Specifies that a portion of the image is locked for reading or writing.
@ write_only
Specifies that a portion of the image is locked for writing.
@ user_input_buffer
Specifies that the buffer used for reading or writing pixel data is allocated by the user....
@ read_only
Specifies that a portion of the image is locked for reading.
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:36