Jump to content
Software FX Community

Re: Question about information saved in a CFX Template


Software FX

Recommended Posts

Hi, 

1) The FileMask property is used when you Export to a file, not to a

template (CHART_CFXOLEFILE). CHART_CFXOLETEMPLATE will always export a

template.

2) Instead of:

m_pChartFX->FileMask = (CfxFileMask) (m_pChartFX->FileMask

| FMASK_COLORS | FMASK_ELEMENTS | FMASK_EXTENSIONS | FMASK_FONTS

| FMASK_GENERAL | FMASK_LABELS | FMASK_MULTI | FMASK_PRINTERINFO

| FMASK_SCALE | FMASK_TITLES | FMASK_TOOLS);

You must do:

m_pChartFX->FileMask = (CfxFileMask) (

FMASK_COLORS | FMASK_ELEMENTS | FMASK_EXTENSIONS | FMASK_FONTS

| FMASK_GENERAL | FMASK_LABELS | FMASK_MULTI | FMASK_PRINTERINFO

| FMASK_SCALE | FMASK_TITLES | FMASK_TOOLS);

So that you don't include the data.

Frank

SFX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...