NX Open C++ 参考指南 2406 v1.1
载入中...
搜索中...
未找到
Report_ImageOption.hxx
1//--------------------------------------------------------------------------
2// Copyright 2024 Siemens
3//--------------------------------------------------------------------------
4// JA API的C++接口头文件
5//--------------------------------------------------------------------------
6//
7// 源文件:
8// Report_ImageOption.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/TaggedObject.hxx>
22#include <NXOpen/libnxopencpp_report_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
30namespace NXOpen
31{
32 namespace Report
33 {
34 class ImageOption;
35 }
36 namespace Report
37 {
38 class _ImageOptionBuilder;
39 class ImageOptionImpl;
43 class NXOPENCPP_REPORTEXPORT ImageOption : public NXOpen::TaggedObject
44 {
45 private: ImageOptionImpl * m_imageoption_impl;
46 private: friend class _ImageOptionBuilder;
47 protected: ImageOption();
48 public: ~ImageOption();
52 public: double ImageHeight
53 (
54 );
58 public: void SetImageHeight
59 (
60 double imageHeight
61 );
65 public: double ImageWidth
66 (
67 );
71 public: void SetImageWidth
72 (
73 double imageWidth
74 );
78 public: double ImageRotation
79 (
80 );
84 public: void SetImageRotation
85 (
86 double imageRotation
87 );
92 (
93 );
98 (
99 bool lockOriginalRatio
100 );
101 };
102 }
103}
104#ifdef _MSC_VER
105#pragma warning(pop)
106#endif
107#ifdef __GNUC__
108#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
109#pragma GCC diagnostic warning "-Wdeprecated-declarations"
110#endif
111#endif
112#undef EXPORTLIBRARY