New to Telerik UI for WPFStart a free 30-day trial

Interface that provides the image exporter object which is returned after callingBeginExporting(ImageExportSettings) method.

Definition

Namespace:Telerik.Windows.Controls.GanttView

Assembly:Telerik.Windows.Controls.GanttView.dll

Syntax:

C#
public interface IImageExporter : IDisposable

Inherited Members IDisposable.Dispose()

Properties

Gets how many columns are generated using the target area.

C#
int Columns { get; }

Gets the image wrappers which are used to export an BitmapSource.

C#
IEnumerable<ImageInfo> ImageInfos { get; }

Gets how manu rows are generated using the target area.

C#
int Rows { get; }

Methods

Export target area from RadGanttView as BitmapSource.

C#
BitmapSource ExportToImage(Rect targetArea)
Parameters:targetAreaRect

The visual part of the GanttView.

Returns:

BitmapSource

BitmapSource object.