UF_CGM_ask_default_custom_colors (查看源代码)
 
定义在: uf_cgm.h
 
概述
Returns the default CGM export custom colors.

环境
内部和外部

参见
UF_CGM_custom_colors_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_ask_default_custom_colors
(
UF_CGM_custom_colors_p_t custom_colors
)
UF_CGM_custom_colors_p_tcustom_colorsOutput(输出)The custom colors

 


 
UF_CGM_ask_default_custom_widths (查看源代码)
 
定义在: uf_cgm.h
 
概述
Returns the default CGM export custom widths.

环境
内部和外部

参见
UF_CGM_custom_widths_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_ask_default_custom_widths
(
UF_CGM_custom_widths_p_t custom_widths
)
UF_CGM_custom_widths_p_tcustom_widthsOutput(输出)The custom widths

 


 
UF_CGM_ask_default_export_options (查看源代码)
 
定义在: uf_cgm.h
 
概述
Returns the default CGM export option settings.

环境
内部和外部

参见
UF_CGM_export_options_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_ask_default_export_options
(
UF_CGM_export_options_p_t export_options
)
UF_CGM_export_options_p_texport_optionsOutput(输出)The options

 


 
UF_CGM_ask_session_custom_colors (查看源代码)
 
定义在: uf_cgm.h
 
概述
Returns the current CGM export custom colors for the session.

环境
内部和外部

参见
UF_CGM_custom_colors_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_ask_session_custom_colors
(
UF_CGM_custom_colors_p_t custom_colors
)
UF_CGM_custom_colors_p_tcustom_colorsOutput(输出)The custom colors

 


 
UF_CGM_ask_session_custom_widths (查看源代码)
 
定义在: uf_cgm.h
 
概述
Returns the current CGM export custom widths for the session.

环境
内部和外部

参见
UF_CGM_custom_widths_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_ask_session_custom_widths
(
UF_CGM_custom_widths_p_t custom_widths
)
UF_CGM_custom_widths_p_tcustom_widthsOutput(输出)The custom widths

 


 
UF_CGM_ask_session_export_options (查看源代码)
 
定义在: uf_cgm.h
 
概述
Returns the current CGM export option settings for the session.

环境
内部和外部

参见
UF_CGM_export_options_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_ask_session_export_options
(
UF_CGM_export_options_p_t export_options
)
UF_CGM_export_options_p_texport_optionsOutput(输出)The options

 


 
UF_CGM_export_cgm (查看源代码)
 
定义在: uf_cgm.h
 
概述
Exports a CGM file with the specified name. Suffix .cgm is appended to
the name if not present. If a CGM file of the same name already exists,
it is overwritten. The drawing sheet provided must be in the displayed
part.

环境
内部和外部

参见
UF_CGM_export_options_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_export_cgm
(
tag_t drawing_sheet,
UF_CGM_export_options_p_t export_options,
const char * file_name
)
tag_t (tag_t类型)drawing_sheetInput(输入)The tag of the drawing
sheet to export. If set to
NULL_TAG, the current display
image is exported instead.
UF_CGM_export_options_p_texport_optionsInput(输入)Specifies export options.
If NULL, current session export
options are used instead. If
non-NULL, call
UF_CGM_ask_default_export_options
or
UF_CGM_ask_session_export_options
to initialize the structure before
setting structure fields. Current
session export options are not
modified by structure values.
const char *file_nameInput(输入)The CGM filename

 


 
UF_CGM_import_cgm (查看源代码)
 
定义在: uf_cgm.h
 
概述
Imports the CGM file with the specified name.

环境
内部和外部

参见
UF_CGM_import_options_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_import_cgm
(
char * file_name,
UF_CGM_import_options_p_t import_options
)
char * (字符型指针)file_nameInput(输入)The CGM filename
UF_CGM_import_options_p_timport_optionsInput(输入)Specifies import options.
If NULL, default import
options are used instead. If
non-NULL, call
UF_CGM_init_import_options
to initialize the structure
before setting structure
fields.

 


 
UF_CGM_init_import_options (查看源代码)
 
定义在: uf_cgm.h
 
概述
Initializes the fields of a UF_CGM_import_options_t structure to default
values. Call this function before setting structure fields in preparation
to call UF_CGM_import_cgm.

环境
内部和外部

参见
UF_CGM_import_options_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_init_import_options
(
UF_CGM_import_options_p_t import_options
)
UF_CGM_import_options_p_timport_optionsOutput(输出)The options

 


 
UF_CGM_set_session_custom_colors (查看源代码)
 
定义在: uf_cgm.h
 
概述
Modifies the current CGM export custom colors for the session. Call
one of the following functions to initialize the UF_CGM_custom_colors_t
structure before setting structure fields.

UF_CGM_ask_default_custom_colors
UF_CGM_ask_session_custom_colors
UF_PLOT_ask_drawing_sheet_colors
UF_PLOT_read_custom_colors_from_cdf

环境
内部和外部

参见
UF_CGM_custom_colors_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_set_session_custom_colors
(
UF_CGM_custom_colors_p_t custom_colors
)
UF_CGM_custom_colors_p_tcustom_colorsInput(输入)The custom colors

 


 
UF_CGM_set_session_custom_widths (查看源代码)
 
定义在: uf_cgm.h
 
概述
Modifies the current CGM export custom widths for the session. Call
one of the following functions to initialize the UF_CGM_custom_widths_t
structure before setting structure fields.

UF_CGM_ask_default_custom_widths
UF_CGM_ask_session_custom_widths
UF_PLOT_ask_drawing_sheet_widths
UF_PLOT_read_custom_widths_from_wdf

环境
内部和外部

参见
UF_CGM_custom_widths_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_set_session_custom_widths
(
UF_CGM_custom_widths_p_t custom_widths
)
UF_CGM_custom_widths_p_tcustom_widthsInput(输入)The custom widths

 


 
UF_CGM_set_session_export_options (查看源代码)
 
定义在: uf_cgm.h
 
概述
Modifies the current CGM export option settings for the session. Call
UF_CGM_ask_default_export_options or UF_CGM_ask_session_export_options
to initialize the UF_CGM_export_options_t structure before setting
structure fields.

环境
内部和外部

参见
UF_CGM_export_options_t

历史
Originally released in NX3.0.
 
需要许可证(S)
gateway (UG入口基本模块,Gateway是所有其它Uuigraphics模块的一个必要条件)

 
int UF_CGM_set_session_export_options
(
UF_CGM_export_options_p_t export_options
)
UF_CGM_export_options_p_texport_optionsInput(输入)The options