XpsOptions.RenderMetafileAsBitmap
XpsOptions.RenderMetafileAsBitmap property
Gets or sets a value indicating whether a metafile should be rendered as bitmap.
public bool RenderMetafileAsBitmap { get; set; }
Examples
Shows how to save project as XPS file.
var project = new Project(DataDir + "EstimatedMilestoneTasks.mpp");
// create XPS save options and tune the parameters
var options = new XpsOptions
{
RenderMetafileAsBitmap = true
};
project.Save(OutDir + "UseSvgOptions_out.xps", options);
See Also
- class XpsOptions
- namespace Aspose.Tasks.Saving
- assembly Aspose.Tasks