DynamicImageInstance.GetImage Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the image of the current instance.
Overloads
GetImage() |
Returns the image of the current instance. |
GetImage(ActionInfoWithDynamicImageMapCollection) |
Returns the image of the current instance and its accompanying ActionInfoWithDynamicImageMapCollection. |
GetImage(DynamicImageInstance+ImageType) |
Returns the image of the current instance by specifying the type of the rendered image. |
GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection) |
Returns the image of the current instance and its accompanying ActionInfoWithDynamicImageMapCollection by specifying the type of the rendered image. |
GetImage(DynamicImageInstance+ImageType, Boolean) |
Returns the image of the current instance by specifying the type of the rendered image and gets a boolean value indicating wether the image has an associated image map. |
GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection, Stream) |
Returns the image of the current instance and its accompanying ActionInfoWithDynamicImageMapCollection. |
GetImage()
Returns the image of the current instance.
public:
System::IO::Stream ^ GetImage();
public System.IO.Stream GetImage ();
member this.GetImage : unit -> System.IO.Stream
Public Function GetImage () As Stream
Returns
A Stream object that contains the image stream to the current image instance.
Applies to
GetImage(ActionInfoWithDynamicImageMapCollection)
Returns the image of the current instance and its accompanying ActionInfoWithDynamicImageMapCollection.
public:
System::IO::Stream ^ GetImage([Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ActionInfoWithDynamicImageMapCollection ^ % actionImageMaps);
public System.IO.Stream GetImage (out Microsoft.ReportingServices.OnDemandReportRendering.ActionInfoWithDynamicImageMapCollection actionImageMaps);
member this.GetImage : ActionInfoWithDynamicImageMapCollection -> System.IO.Stream
Public Function GetImage (ByRef actionImageMaps As ActionInfoWithDynamicImageMapCollection) As Stream
Parameters
- actionImageMaps
- ActionInfoWithDynamicImageMapCollection
When this method returns, contains an ActionInfoWithDynamicImageMapCollection object associated with the image. This parameter is passed uninitialized.
Returns
A Stream object that contains the image stream to the current image instance.
Applies to
GetImage(DynamicImageInstance+ImageType)
Returns the image of the current instance by specifying the type of the rendered image.
public:
System::IO::Stream ^ GetImage(Microsoft::ReportingServices::OnDemandReportRendering::DynamicImageInstance::ImageType type);
public System.IO.Stream GetImage (Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType type);
member this.GetImage : Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType -> System.IO.Stream
Public Function GetImage (type As DynamicImageInstance.ImageType) As Stream
Parameters
The desired image type.
Returns
A Stream object that contains the image stream to the current image instance.
Applies to
GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection)
Returns the image of the current instance and its accompanying ActionInfoWithDynamicImageMapCollection by specifying the type of the rendered image.
public:
virtual System::IO::Stream ^ GetImage(Microsoft::ReportingServices::OnDemandReportRendering::DynamicImageInstance::ImageType type, [Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ActionInfoWithDynamicImageMapCollection ^ % actionImageMaps);
public virtual System.IO.Stream GetImage (Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType type, out Microsoft.ReportingServices.OnDemandReportRendering.ActionInfoWithDynamicImageMapCollection actionImageMaps);
abstract member GetImage : Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType * ActionInfoWithDynamicImageMapCollection -> System.IO.Stream
override this.GetImage : Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType * ActionInfoWithDynamicImageMapCollection -> System.IO.Stream
Public Overridable Function GetImage (type As DynamicImageInstance.ImageType, ByRef actionImageMaps As ActionInfoWithDynamicImageMapCollection) As Stream
Parameters
The desired image type.
- actionImageMaps
- ActionInfoWithDynamicImageMapCollection
When this method returns, contains an ActionInfoWithDynamicImageMapCollection object associated with the image. This parameter is passed uninitialized.
Returns
A Stream object that contains the image stream to the current image instance.
Applies to
GetImage(DynamicImageInstance+ImageType, Boolean)
Returns the image of the current instance by specifying the type of the rendered image and gets a boolean value indicating wether the image has an associated image map.
protected:
virtual System::IO::Stream ^ GetImage(Microsoft::ReportingServices::OnDemandReportRendering::DynamicImageInstance::ImageType type, [Runtime::InteropServices::Out] bool % hasImageMap);
protected virtual System.IO.Stream GetImage (Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType type, out bool hasImageMap);
abstract member GetImage : Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType * bool -> System.IO.Stream
override this.GetImage : Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType * bool -> System.IO.Stream
Protected Overridable Function GetImage (type As DynamicImageInstance.ImageType, ByRef hasImageMap As Boolean) As Stream
Parameters
The desired image type.
- hasImageMap
- Boolean
When this method returns, contains a Boolean value true
if the image has an associated image map; otherwise, false
. This parameter is passed uninitialized.
Returns
A Stream object that contains the image stream to the current image instance.
Applies to
GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection, Stream)
Returns the image of the current instance and its accompanying ActionInfoWithDynamicImageMapCollection.
protected:
abstract void GetImage(Microsoft::ReportingServices::OnDemandReportRendering::DynamicImageInstance::ImageType type, [Runtime::InteropServices::Out] Microsoft::ReportingServices::OnDemandReportRendering::ActionInfoWithDynamicImageMapCollection ^ % actionImageMaps, [Runtime::InteropServices::Out] System::IO::Stream ^ % image);
protected abstract void GetImage (Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType type, out Microsoft.ReportingServices.OnDemandReportRendering.ActionInfoWithDynamicImageMapCollection actionImageMaps, out System.IO.Stream image);
abstract member GetImage : Microsoft.ReportingServices.OnDemandReportRendering.DynamicImageInstance.ImageType * ActionInfoWithDynamicImageMapCollection * Stream -> unit
Protected MustOverride Sub GetImage (type As DynamicImageInstance.ImageType, ByRef actionImageMaps As ActionInfoWithDynamicImageMapCollection, ByRef image As Stream)
Parameters
The desired image type.
- actionImageMaps
- ActionInfoWithDynamicImageMapCollection
When this method returns, contains an ActionInfoWithDynamicImageMapCollection object associated with the image. This parameter is passed uninitialized.
- image
- Stream
When this method returns, contain a Stream object that contains the image stream to the current image instance.