xtd 0.2.0
text_rendering_hint.h
Go to the documentation of this file.
1 #pragma once
5 #include <xtd/enum>
6 
8 namespace xtd {
10  namespace drawing {
12  namespace text {
20  enum class text_rendering_hint {
22  system_default = 0,
30  anti_alias = 4,
33  };
34  }
35  }
36 }
37 
41 };
Each character is drawn using its glyph ClearType bitmap with hinting. The highest quality setting...
Each character is drawn using its antialiased glyph bitmap with hinting. Much better quality due to a...
text_rendering_hint
Specifies the quality of text rendering.
Definition: text_rendering_hint.h:20
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
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
Each character is drawn using its glyph bitmap. Hinting is not used.
Each character is drawn using its antialiased glyph bitmap without hinting. Better quality due to ant...
Each character is drawn using its glyph bitmap, with the system default rendering hint...
The xtd::forms::status_bar_panel displays text in the standard font.
Each character is drawn using its glyph bitmap. Hinting is used to improve character appearance on st...
Provides the registration struct for enumerations.
Definition: enum_register.h:36