Interface
IImageExporter

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:

cs-api-definition
public interface IImageExporter : IDisposable

Inherited Members IDisposable.Dispose()

Properties

Columns

Gets how many columns are generated using the target area.

Declaration

cs-api-definition
int Columns { get; }

Property Value

int

ImageInfos

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

Declaration

cs-api-definition
IEnumerable<ImageInfo> ImageInfos { get; }

Property Value

IEnumerable<ImageInfo>

Rows

Gets how manu rows are generated using the target area.

Declaration

cs-api-definition
int Rows { get; }

Property Value

int

Methods

ExportToImage(Rect)

Export target area from RadGanttView as BitmapSource.

Declaration

cs-api-definition
BitmapSource ExportToImage(Rect targetArea)

Parameters

targetArea

Rect

The visual part of the GanttView.

Returns

BitmapSource

BitmapSource object.