NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
Preferences_SectionViewPreferences.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// 工程图剖面视图首选项C++接口头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// Preferences_SectionViewPreferences.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_preferences_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
Preferences
34
{
35
class
SectionViewPreferences
;
36
}
37
namespace
Preferences
38
{
39
class
ViewPreferences
;
40
}
41
namespace
Preferences
42
{
43
class
ISectionViewPreferences
;
44
}
45
namespace
Preferences
46
{
47
class
SectionViewPreferencesImpl;
53
class
NXOPENCPP_PREFERENCESEXPORT
SectionViewPreferences
:
public
virtual
NXOpen::Preferences::ISectionViewPreferences
54
{
55
private
:
SectionViewPreferencesImpl
* m_sectionviewpreferences_impl;
56
private
:
NXOpen::Preferences::ViewPreferences
* m_owner;
58
public
:
explicit
SectionViewPreferences
(
NXOpen::Preferences::ViewPreferences
*owner);
60
public
:
62
tag_t
Tag
()
const
;
63
public
:
~SectionViewPreferences
();
70
public
:
void
SetBackground
71
(
72
bool
background
73
);
80
public
:
bool
Background
81
(
82
);
89
public
:
void
SetForeground
90
(
91
bool
foreground
92
);
99
public
:
bool
Foreground
100
(
101
);
105
public
:
void
SetBendlines
106
(
107
bool
bendlines
108
);
112
public
:
bool
Bendlines
113
(
114
);
118
public
:
void
SetSectionSheetBodies
119
(
120
bool
sectionSheetBodies
121
);
125
public
:
bool
SectionSheetBodies
126
(
127
);
132
public
:
void
SetCrossHatch
133
(
134
bool
crossHatch
135
);
140
public
:
bool
CrossHatch
141
(
142
);
148
public
:
void
SetHiddenLineHatching
149
(
150
bool
hiddenLineHatching
151
);
157
public
:
bool
HiddenLineHatching
158
(
159
);
164
public
:
void
SetAssemblyCrossHatching
165
(
166
bool
assemblyCrossHatching
167
);
172
public
:
bool
AssemblyCrossHatching
173
(
174
);
179
public
:
void
SetRestrictCrosshatchAngle
180
(
181
bool
restrictCrosshatchAngle
182
);
187
public
:
bool
RestrictCrosshatchAngle
188
(
189
);
194
public
:
void
SetCrosshatchAdjacencyTolarance
195
(
196
double
crosshatchAdjacencyTolarance
197
);
202
public
:
double
CrosshatchAdjacencyTolarance
203
(
204
);
205
};
//lint !e1712 default constructor not defined for class
206
}
207
}
208
#ifdef _MSC_VER
209
#pragma warning(pop)
210
#endif
211
#ifdef __GNUC__
212
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
213
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
214
#endif
215
#endif
216
#undef EXPORTLIBRARY