Interface IImageExporter
Interface that provides the image exporter object which is returned after callingBeginExporting(ImageExportSettings) method.
Namespace: Telerik.Windows.Controls.GanttView
Assembly: Telerik.Windows.Controls.GanttView.dll
Syntax
public interface IImageExporter : IDisposable
Properties
Columns
Gets how many columns are generated using the target area.
Declaration
int Columns { get; }
Property Value
System.Int32
|
ImageInfos
Gets the image wrappers which are used to export an BitmapSource.
Declaration
IEnumerable<ImageInfo> ImageInfos { get; }
Property Value
System.Collections.Generic.IEnumerable<ImageInfo>
|
Rows
Gets how manu rows are generated using the target area.
Declaration
int Rows { get; }
Property Value
System.Int32
|
Methods
ExportToImage(Rect)
Export target area from RadGanttView as BitmapSource.
Declaration
BitmapSource ExportToImage(Rect targetArea)
Parameters
System.Windows.Rect
targetArea
The visual part of the GanttView. |
Returns
System.Windows.Media.Imaging.BitmapSource
BitmapSource object. |