Cobbletext  0.2.0
Complex text layout and rendering engine
TextAlignment.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 namespace cobbletext {
4 
5 enum class TextAlignment {
6  NotSpecified = 0,
7  Start = 1,
8  End = 2,
9  Left = 3,
10  Right = 4,
11  Center = 5
12 };
13 
14 }
cobbletext::TextAlignment::NotSpecified
@ NotSpecified
cobbletext::TextAlignment::Center
@ Center
cobbletext::TextAlignment::End
@ End
cobbletext::TextAlignment
TextAlignment
Definition: TextAlignment.hpp:5
cobbletext::TextAlignment::Right
@ Right
cobbletext
Definition: AdvanceInfo.hpp:8
cobbletext::TextAlignment::Left
@ Left
cobbletext::TextAlignment::Start
@ Start