ActionInfoWithDynamicImageMap.CreateImageMapAreaInstance 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.
Creates an instance object for this report definition object.
Overloads
CreateImageMapAreaInstance(ImageMapArea+ImageMapAreaShape, Single[]) |
Creates an instance object for this report definition object by specifying the shape and coordinates. |
CreateImageMapAreaInstance(ImageMapArea+ImageMapAreaShape, Single[], String) |
Creates an instance object for this report definition object by specifying the shape, coordinates, and tooltip text. |
CreateImageMapAreaInstance(ImageMapArea+ImageMapAreaShape, Single[])
Creates an instance object for this report definition object by specifying the shape and coordinates.
public:
Microsoft::ReportingServices::OnDemandReportRendering::ImageMapAreaInstance ^ CreateImageMapAreaInstance(Microsoft::ReportingServices::OnDemandReportRendering::ImageMapArea::ImageMapAreaShape shape, cli::array <float> ^ coordinates);
public Microsoft.ReportingServices.OnDemandReportRendering.ImageMapAreaInstance CreateImageMapAreaInstance (Microsoft.ReportingServices.OnDemandReportRendering.ImageMapArea.ImageMapAreaShape shape, float[] coordinates);
member this.CreateImageMapAreaInstance : Microsoft.ReportingServices.OnDemandReportRendering.ImageMapArea.ImageMapAreaShape * single[] -> Microsoft.ReportingServices.OnDemandReportRendering.ImageMapAreaInstance
Public Function CreateImageMapAreaInstance (shape As ImageMapArea.ImageMapAreaShape, coordinates As Single()) As ImageMapAreaInstance
Parameters
The shape of the image map area.
- coordinates
- Single[]
Required values depend on the value of the shape
parameter:
A Rectangle is represented by a series of left, right, top, and bottom values.
A Polygon is represented by a series of x,y pairs.
A Circle is represented by x, y, and radius values.
Returns
An ImageMapAreaInstance object.
Applies to
CreateImageMapAreaInstance(ImageMapArea+ImageMapAreaShape, Single[], String)
Creates an instance object for this report definition object by specifying the shape, coordinates, and tooltip text.
public:
Microsoft::ReportingServices::OnDemandReportRendering::ImageMapAreaInstance ^ CreateImageMapAreaInstance(Microsoft::ReportingServices::OnDemandReportRendering::ImageMapArea::ImageMapAreaShape shape, cli::array <float> ^ coordinates, System::String ^ toolTip);
public Microsoft.ReportingServices.OnDemandReportRendering.ImageMapAreaInstance CreateImageMapAreaInstance (Microsoft.ReportingServices.OnDemandReportRendering.ImageMapArea.ImageMapAreaShape shape, float[] coordinates, string toolTip);
member this.CreateImageMapAreaInstance : Microsoft.ReportingServices.OnDemandReportRendering.ImageMapArea.ImageMapAreaShape * single[] * string -> Microsoft.ReportingServices.OnDemandReportRendering.ImageMapAreaInstance
Public Function CreateImageMapAreaInstance (shape As ImageMapArea.ImageMapAreaShape, coordinates As Single(), toolTip As String) As ImageMapAreaInstance
Parameters
The shape of the image map area.
- coordinates
- Single[]
Required values depend on the value of the shape
parameter:
A Rectangle is represented by a series of left, right, top, and bottom values.
A Polygon is represented by a series of x,y pairs.
A Circle is represented by x, y, and radius values.
- toolTip
- String
The tooltip text for the image map area.
Returns
An ImageMapAreaInstance object.