BoxObject Classe
Représente une zone dessinée dans le rapport.
Pour obtenir la liste de tous les membres de ce type, voir les membres de la classe BoxObject.
System.Object
CrystalDecisions.CrystalReports.Engine.EngineObjectBase
CrystalDecisions.CrystalReports.Engine.ReportObject
CrystalDecisions.CrystalReports.Engine.DrawingObject
BoxObject
[Visual Basic]
Public Class BoxObject
Inherits DrawingObject
Implements IDisposable
[C#]
public class BoxObject : DrawingObject, IDisposable
Remarques
Cette classe permet d'extraire des informations et de définir les options génériques de mise en forme héritées de la classe DrawingObject.
Exemple
[VJ#]
static private BoxObject getBoxObject(String reportObjectName)
{
BoxObject box = null;
try
{
box =
(BoxObject)Report.get_ReportDefinition().get_ReportObjects()
.get_Item(reportObjectName);
}
catch (Exception e)
{
}
return box;
}
[Visual Basic]
Private Function GetBoxObject _
(ByVal reportObjectName As String) As BoxObject
Dim box As BoxObject
If TypeOf _
(Report.ReportDefinition.ReportObjects. _
Item(reportObjectName)) Is BoxObject Then
box = _
Report.ReportDefinition.ReportObjects. _
Item(reportObjectName)
GetBoxObject = box
Else : GetBoxObject = Nothing
End If
End Function
[C#]
private BoxObject GetBoxObject(string reportObjectName)
{
BoxObject box;
box =
section.ReportObjects[reportObjectName] as BoxObject;
return box;
}
Configuration requise
Espace de noms CrystalDecisions.CrystalReports.Engine
Assembly CrystalDecisions.CrystalReports.Engine (CrystalDecisions.CrystalReports.Engine.dll)
Voir aussi
BoxObject Membres | CrystalDecisions.CrystalReports.Engine Espace de noms
©2005 Business Objects SA. Tous droits réservés.
Business Objects SA. http://www.france.businessobjects.com/ Services de support http://www.businessobjects.com/support/ |