Jump to content
Software FX Community

Re: Question about information saved in a CFX Template


User (Legacy)

Recommended Posts

Hello! 

Thanks for the information, but isn't this different that the documentation?

Under Export Method--> Remarks, it says :

When saving to a file, specifically a template, you may select which chart

settings to save by using the FileMask Property.

Shouldnt the documentation be changed to reflect this? Or should the export

to template allow the User to export all chart properties like the

documentation says?

thanks

--

josh

Francisco Padron <frankp@softwarefx.com> wrote in message

news:DE0379D14694D211B4CE00609770710D0343D1@sftfx-221.wamnet.net...

> 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...