Tworzenie składnika czasu wykonywania element raportu niestandardowego
The custom report item run-time component is implemented as a Microsoft .NET Framework component using any CLS-compliant language, and is called by the report processor at run time.Zdefiniuj właściwości Uruchom -czas i odpowiadający jej składnik w środowisku projektowym, modyfikując raport niestandardowy element projektu -czas składnika.
Przykładowy element w pełni zaimplementowana element raportu niestandardowy, zobacz SQL Server Reporting Services próbek produktu.
Definicja i wystąpienia obiektów
Przed zaimplementowaniem element raportu niestandardowego jest ważne jest zrozumienie różnicy między definicji obiektów i wystąpienie obiektów.Definicja obiektów zapewniają RDL reprezentację element raportu niestandardowego wystąpienie obiektów są ocenione wersje obiektów definicji.Istnieje tylko jeden obiekt definicji dla każdego element w raporcie.Podczas uzyskiwania dostępu do właściwości obiektu definicji, które zawierają wyrażenie, zostanie wyświetlony ciąg wyrażenie unevaluated.Wystąpienia obiektów zawierają ocenione wersje obiektów definicji i może mieć relację jeden do wielu z obiekt definicji element.Na przykład, jeśli raport ma Tablix danych region zawiera CustomReportItem w wierszu szczegółów, będzie tylko jeden obiekt definicji, ale będzie wystąpienie obiektu dla każdego wiersza w danych region.
Implementowanie interfejsu ICustomReportItem
Aby utworzyć CustomReportItem run -czas składnik będzie trzeba zaimplementować ICustomReportItem interfejs, który jest zdefiniowany w Microsoft.ReportingServices.ProcessingCore.dll:
namespace Microsoft.ReportingServices.OnDemandReportRendering
{
public interface ICustomReportItem
{
void GenerateReportItemDefinition(CustomReportItem customReportItem);
void EvaluateReportItemInstance(CustomReportItem customReportItem);
}
}
Po zaimplementowano ICustomReportItem interfejs metoda dwóch procedur wejścia zostanie wygenerowany automatycznie: GenerateReportItemDefinitionand EvaluateReportItemInstance.GenerateReportItemDefinition Metoda jest wywoływana pierwszy i jest używany do ustawiania właściwości definicji i tworzenie Image obiekt, który będzie zawierać zarówno definicji i wystąpienie właściwości, które są używane do renderowania element.EvaluateReportItemInstance Wywoływana jest metoda po oceniane definicji obiektów i zawiera obiekty wystąpienie, które będą używane do renderowania element.
Oto przykładowa implementacja element element raportu niestandardowy, który renderuje nazwa formantu obrazu.
namespace Microsoft.Samples.ReportingServices
{
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Drawing.Imaging;
using System.IO;
using System.Text;
using Microsoft.ReportingServices.OnDemandReportRendering;
public class PolygonsCustomReportItem : ICustomReportItem
{
#region ICustomReportItem Members
public void GenerateReportItemDefinition(CustomReportItem cri)
{
// Create the Image object that will be
// used to render the custom report item
cri.CreateCriImageDefinition();
Image polygonImage = (Image)cri.GeneratedReportItem;
}
public void EvaluateReportItemInstance(CustomReportItem cri)
{
// Get the Image definition
Image polygonImage = (Image)cri.GeneratedReportItem;
// Create the image for the custom report item
polygonImage.ImageInstance.ImageData = DrawImage(cri);
}
#endregion
/// <summary>
/// Creates an image of the CustomReportItem's name
/// </summary>
private byte[] DrawImage(CustomReportItem customReportItem)
{
int width = 1; // pixels
int height = 1; // pixels
int resolution = 75; // dpi
System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(width, height);
bitmap.SetResolution(resolution, resolution);
System.Drawing.Graphics graphics = System.Drawing.Graphics.FromImage(bitmap);
graphics.PageUnit = System.Drawing.GraphicsUnit.Pixel;
// Get the Font for the Text
System.Drawing.Font font = new System.Drawing.Font(System.Drawing.FontFamily.GenericMonospace,
12, System.Drawing.FontStyle.Regular);
// Get the Brush for drawing the Text
System.Drawing.Brush brush = new System.Drawing.SolidBrush(System.Drawing.Color.LightGreen);
// Get the measurements for the image
System.Drawing.SizeF maxStringSize = graphics.MeasureString(customReportItem.Name, font);
width = (int)(maxStringSize.Width + 2 * font.GetHeight(resolution));
height = (int)(maxStringSize.Height + 2 * font.GetHeight(resolution));
bitmap.Dispose();
bitmap = new System.Drawing.Bitmap(width, height);
bitmap.SetResolution(resolution, resolution);
graphics.Dispose();
graphics = System.Drawing.Graphics.FromImage(bitmap);
graphics.PageUnit = System.Drawing.GraphicsUnit.Pixel;
// Draw the text
graphics.DrawString(customReportItem.Name, font, brush, font.GetHeight(resolution),
font.GetHeight(resolution));
// Create the byte array of the image data
MemoryStream memoryStream = new MemoryStream();
bitmap.Save(memoryStream, ImageFormat.Bmp);
memoryStream.Position = 0;
byte[] imageData = new byte[memoryStream.Length];
memoryStream.Read(imageData, 0, imageData.Length);
return imageData;
}
}
}