NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
SpreadsheetCellData.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// Header for C++ interface to JA API
5
//--------------------------------------------------------------------------
6
//
7
// Source File:
8
// SpreadsheetCellData.ja
9
//
10
// Generated by:
11
// apiwrap
12
//
13
// WARNING:
14
// This file is automatically generated - do not edit by hand
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/TransientObject.hxx>
22
#include <NXOpen/libnxopencpp_exports.hxx>
23
#ifdef _MSC_VER
24
#pragma warning(push)
25
#pragma warning(disable:4996)
26
#endif
27
#ifdef __GNUC__
28
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29
#endif
30
namespace
NXOpen
31
{
32
class
SpreadsheetCellData
;
33
class
SpreadsheetCellDataImpl;
42
class
NXOPENCPPEXPORT
SpreadsheetCellData
:
public
NXOpen::TransientObject
43
{
45
public
:
enum
Types
46
{
47
TypesInt
,
48
TypesDouble
,
49
TypesString
,
50
TypesLogical
,
51
TypesFormula
52
};
53
private
:
SpreadsheetCellDataImpl
* m_spreadsheetcelldata_impl;
55
public
:
explicit
SpreadsheetCellData
(
void
*ptr);
57
64
public
:
virtual
~SpreadsheetCellData
();
69
public
:
NXOpen::SpreadsheetCellData::Types
Type
70
(
71
);
76
public
:
void
SetType
77
(
78
NXOpen::SpreadsheetCellData::Types
cellType
79
);
84
public
:
double
DoubleValue
85
(
86
);
91
public
:
void
SetDoubleValue
92
(
93
double
doubleValue
94
);
99
public
:
int
IntValue
100
(
101
);
106
public
:
void
SetIntValue
107
(
108
int
intValue
109
);
114
public
:
NXString
FormulaValue
115
(
116
);
121
public
:
void
SetFormulaValue
122
(
123
const
NXString
& formulaValue
124
);
129
void
SetFormulaValue
130
(
131
const
char
* formulaValue
132
);
137
public
:
NXString
StringValue
138
(
139
);
144
public
:
void
SetStringValue
145
(
146
const
NXString
& stringValue
147
);
152
void
SetStringValue
153
(
154
const
char
* stringValue
155
);
160
public
:
bool
LogicalValue
161
(
162
);
167
public
:
void
SetLogicalValue
168
(
169
bool
logicalValue
170
);
171
};
//lint !e1712 default constructor not defined for class
172
}
173
#ifdef _MSC_VER
174
#pragma warning(pop)
175
#endif
176
#ifdef __GNUC__
177
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
178
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
179
#endif
180
#endif
181
#undef EXPORTLIBRARY