CFx SDK Documentation 2024 SP0
Loading...
Searching...
No Matches
TextDefs.h
Go to the documentation of this file.
1
2// Copyright (C) 2002-2022, Open Design Alliance (the "Alliance").
3// All rights reserved.
4//
5// This software and its documentation and related materials are owned by
6// the Alliance. The software may only be incorporated into application
7// programs owned by members of the Alliance, subject to a signed
8// Membership Agreement and Supplemental Software License Agreement with the
9// Alliance. The structure and organization of this software are the valuable
10// trade secrets of the Alliance and its suppliers. The software is also
11// protected by copyright law and international treaty provisions. Application
12// programs incorporating this software must include the following statement
13// with their copyright notices:
14//
15// This application incorporates Open Design Alliance software pursuant to a license
16// agreement with Open Design Alliance.
17// Open Design Alliance Copyright (C) 2002-2022 by Open Design Alliance.
18// All rights reserved.
19//
20// By use of this software, its documentation or related materials, you
21// acknowledge and accept the above terms.
23
24
25#ifndef __OD_TEXT_DEFS__
26#define __OD_TEXT_DEFS__
27
32namespace OdDb
33{
35 {
41 kTextFit = 5
42 };
43
45 {
49 kTextTop = 3
50 };
51
53 {
54 kAtLeast = 1, // Larger characters on lines will increase line spacing.
55 kExactly = 2 // Line spacing is constant.
56 };
57
58}
59
60#endif // __OD_TEXT_DEFS__
TextHorzMode
Definition: TextDefs.h:35
@ kTextLeft
Definition: TextDefs.h:36
@ kTextCenter
Definition: TextDefs.h:37
@ kTextAlign
Definition: TextDefs.h:39
@ kTextMid
Definition: TextDefs.h:40
@ kTextRight
Definition: TextDefs.h:38
@ kTextFit
Definition: TextDefs.h:41
TextVertMode
Definition: TextDefs.h:45
@ kTextBase
Definition: TextDefs.h:46
@ kTextBottom
Definition: TextDefs.h:47
@ kTextVertMid
Definition: TextDefs.h:48
@ kTextTop
Definition: TextDefs.h:49
LineSpacingStyle
Definition: TextDefs.h:53
@ kExactly
Definition: TextDefs.h:55
@ kAtLeast
Definition: TextDefs.h:54