🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
AstReportGlobal.hpp
浏览该文件的文档.
1
20
21#pragma once
22
23#include "AstGlobal.h"
24
25AST_NAMESPACE_BEGIN
26
33// ---- 枚举定义 ----
34
36enum class EStyleType : int
37{
38 eTabular = 0,
39 eGraph2D = 1,
40 eFixed = 2,
41 eGraph3D = 3
42};
43
45enum class EDataType : int
46{
47 eDouble = 0,
48 eFloat = eDouble,
49 eInt = 1,
50 eString = 2,
51 eTimePoint = 3,
52 eDateTime = eTimePoint
53};
54
56enum class ELineStyle : int
57{
58 eSolid = 0,
59 eDash = 1,
60 eDot = 2,
61 eDashDot = 3
62};
63
65enum class EPointStyle : int
66{
67 eNone = 0,
68 eSquare = 1,
69 eCircle = 2,
70 eDiamond = 3,
71 eTriangle = 4,
72 eCross = 5
73};
74
76enum class EFillPattern : int
77{
78 eNone = 0,
79 eSolid = 1
80};
81
83enum class EExpandMethod : int
84{
85 eNone = 0,
86 eAll = 1,
87 eSelected = 2
88};
89
90
93AST_NAMESPACE_END
ELineStyle
图形线型
定义 AstReportGlobal.hpp:57
@ eDashDot
点划线
EPointStyle
图形点标记样式
定义 AstReportGlobal.hpp:66
EDataType
数据元素的数据类型
定义 AstReportGlobal.hpp:46
EStyleType
报表样式类型
定义 AstReportGlobal.hpp:37
@ eTabular
表格报告(.rst 文件)
@ eFixed
固定格式报告
@ eGraph2D
2D 图形(.rsg 文件)
@ eGraph3D
3D 图形
EFillPattern
图形填充图案
定义 AstReportGlobal.hpp:77
EExpandMethod
Section 展开方式
定义 AstReportGlobal.hpp:84