DynamicImageInstance.GetImage Méthode

Définition

Retourne l’image de l’instance courante.

Surcharges

Nom Description
GetImage()

Retourne l’image de l’instance courante.

GetImage(ActionInfoWithDynamicImageMapCollection)

Retourne l’image de l’instance courante et de son accompagnement ActionInfoWithDynamicImageMapCollection.

GetImage(DynamicImageInstance+ImageType)

Retourne l’image de l’instance courante en spécifiant le type d’image rendue.

GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection)

Retourne l’image de l’instance courante et de son accompagnement ActionInfoWithDynamicImageMapCollection en spécifiant le type d’image rendue.

GetImage(DynamicImageInstance+ImageType, Boolean)

Retourne l’image de l’instance courante en spécifiant le type de l’image rendue et obtient une valeur booléenne indiquant si l’image possède une carte d’image associée.

GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection, Stream)

Retourne l’image de l’instance courante et de son accompagnement ActionInfoWithDynamicImageMapCollection.

GetImage()

Retourne l’image de l’instance courante.

public:
 System::IO::Stream ^ GetImage();
public System.IO.Stream GetImage();
member this.GetImage : unit -> System.IO.Stream
Public Function GetImage () As Stream

Retours

Un Stream objet qui contient le flux d’images vers l’instance d’image courante.

S’applique à

GetImage(ActionInfoWithDynamicImageMapCollection)

Retourne l’image de l’instance courante et de son accompagnement 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

Paramètres

actionImageMaps
ActionInfoWithDynamicImageMapCollection

Lorsque cette méthode revient, contient un ActionInfoWithDynamicImageMapCollection objet associé à l’image. Ce paramètre est passé non initialisé.

Retours

Un Stream objet qui contient le flux d’images vers l’instance d’image courante.

S’applique à

GetImage(DynamicImageInstance+ImageType)

Retourne l’image de l’instance courante en spécifiant le type d’image rendue.

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

Paramètres

type
DynamicImageInstance.ImageType

Le type d’image désiré.

Retours

Un Stream objet qui contient le flux d’images vers l’instance d’image courante.

S’applique à

GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection)

Retourne l’image de l’instance courante et de son accompagnement ActionInfoWithDynamicImageMapCollection en spécifiant le type d’image rendue.

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

Paramètres

type
DynamicImageInstance.ImageType

Le type d’image désiré.

actionImageMaps
ActionInfoWithDynamicImageMapCollection

Lorsque cette méthode revient, contient un ActionInfoWithDynamicImageMapCollection objet associé à l’image. Ce paramètre est passé non initialisé.

Retours

Un Stream objet qui contient le flux d’images vers l’instance d’image courante.

S’applique à

GetImage(DynamicImageInstance+ImageType, Boolean)

Retourne l’image de l’instance courante en spécifiant le type de l’image rendue et obtient une valeur booléenne indiquant si l’image possède une carte d’image associée.

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

Paramètres

type
DynamicImageInstance.ImageType

Le type d’image désiré.

hasImageMap
Boolean

Lorsque cette méthode revient, contient une valeur true booléenne si l’image possède une application d’image associée ; sinon, false. Ce paramètre est passé non initialisé.

Retours

Un Stream objet qui contient le flux d’images vers l’instance d’image courante.

S’applique à

GetImage(DynamicImageInstance+ImageType, ActionInfoWithDynamicImageMapCollection, Stream)

Retourne l’image de l’instance courante et de son accompagnement 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)

Paramètres

type
DynamicImageInstance.ImageType

Le type d’image désiré.

actionImageMaps
ActionInfoWithDynamicImageMapCollection

Lorsque cette méthode revient, contient un ActionInfoWithDynamicImageMapCollection objet associé à l’image. Ce paramètre est passé non initialisé.

image
Stream

Lorsque cette méthode revient, contenir un Stream objet contenant le flux d’images vers l’instance d’image courante.

S’applique à