xtd 0.2.0
alpha.hpp
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/byte>
6
8namespace xtd {
10 namespace drawing {
12 namespace helpers {
22 struct alpha {
24
28 xtd::byte a = 255;
30 };
31 }
32 }
33}
uint8_t byte
Represents a 8-bit unsigned integer.
Definition byte.hpp:23
The xtd::drawing::helpers namespace contains helpers for xtd::drawing objects, sush as rgb,...
Definition alpha.hpp:12
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
The alpha struct.
Definition alpha.hpp:22
xtd::byte a
Gets or sets the alpha component value of this xtd::drawing::helpers::alpha struct.
Definition alpha.hpp:28