NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Drawings_SectionViewStyle.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++接口的JA API头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Drawings_SectionViewStyle.ja
9
//
10
// 生成工具:
11
// apiwrap
12
//
13
// 警告:
14
// 此文件为自动生成 - 请勿手动编辑
15
//
16
#pragma once
17
#include <NXOpen/NXDeprecation.hxx>
18
#include <vector>
19
#include <NXOpen/NXString.hxx>
20
#include <NXOpen/Callback.hxx>
21
#include <NXOpen/Preferences_ISectionViewPreferences.hxx>
22
#include <NXOpen/TaggedObject.hxx>
23
#include <NXOpen/libnxopencpp_drawings_exports.hxx>
24
#ifdef _MSC_VER
25
#pragma warning(push)
26
#pragma warning(disable:4996)
27
#endif
28
#ifdef __GNUC__
29
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
30
#endif
31
namespace
NXOpen
32
{
33
namespace
Drawings
34
{
35
class
SectionViewStyle
;
36
}
37
namespace
Drawings
38
{
39
class
ViewStyle
;
40
}
41
namespace
Preferences
42
{
43
class
ISectionViewPreferences
;
44
}
45
namespace
Drawings
46
{
47
class
SectionViewStyleImpl;
51
class
NXOPENCPP_DRAWINGSEXPORT
SectionViewStyle
:
public
virtual
NXOpen::Preferences::ISectionViewPreferences
52
{
53
private
:
SectionViewStyleImpl
* m_sectionviewstyle_impl;
54
private
:
NXOpen::Drawings::ViewStyle
* m_owner;
56
public
:
explicit
SectionViewStyle
(
NXOpen::Drawings::ViewStyle
*owner);
58
public
:
60
tag_t
Tag
()
const
;
61
public
:
~SectionViewStyle
();
67
public
:
void
SetBackground
68
(
69
bool
background
70
);
76
public
:
bool
Background
77
(
78
);
82
public
:
void
SetForeground
83
(
84
bool
foreground
85
);
89
public
:
bool
Foreground
90
(
91
);
95
public
:
void
SetBendlines
96
(
97
bool
bendlines
98
);
102
public
:
bool
Bendlines
103
(
104
);
108
public
:
void
SetSectionSheetBodies
109
(
110
bool
sectionSheetBodies
111
);
115
public
:
bool
SectionSheetBodies
116
(
117
);
121
public
:
void
SetCrossHatch
122
(
123
bool
crossHatch
124
);
128
public
:
bool
CrossHatch
129
(
130
);
135
public
:
void
SetHiddenLineHatching
136
(
137
bool
hiddenLineHatching
138
);
143
public
:
bool
HiddenLineHatching
144
(
145
);
150
public
:
void
SetAssemblyCrossHatching
151
(
152
bool
assemblyCrossHatching
153
);
158
public
:
bool
AssemblyCrossHatching
159
(
160
);
164
public
:
void
SetRestrictCrosshatchAngle
165
(
166
bool
restrictCrosshatchAngle
167
);
171
public
:
bool
RestrictCrosshatchAngle
172
(
173
);
178
public
:
void
SetCrosshatchAdjacencyTolarance
179
(
180
double
crosshatchAdjacencyTolarance
181
);
186
public
:
double
CrosshatchAdjacencyTolarance
187
(
188
);
192
public
:
void
SetDisplaySectionLine
193
(
194
bool
displaySectionLine
195
);
199
public
:
bool
DisplaySectionLine
200
(
201
);
202
};
//lint !e1712 default constructor not defined for class
203
}
204
}
205
#ifdef _MSC_VER
206
#pragma warning(pop)
207
#endif
208
#ifdef __GNUC__
209
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
210
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
211
#endif
212
#endif
213
#undef EXPORTLIBRARY