BoxObject 클래스
보고서에 그려지는 상자를 나타냅니다.
이 형식의 멤버 목록을 보려면 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
설명
이 클래스를 사용하면 정보를 검색하거나 DrawingObject 클래스에서 상속되는 일반 서식 옵션을 설정할 수 있습니다.
예제
이 예제는 ReportObjects 컬렉션의 Item 속성을 사용하여 이름을 기준으로 ReportObject 개체를 검색하고 ReportObject를 BoxObject로 캐스팅합니다.
[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;
}
요구 사항
네임스페이스 CrystalDecisions.CrystalReports.Engine
어셈블리 CrystalDecisions.CrystalReports.Engine (CrystalDecisions.CrystalReports.Engine.dll)
참고 항목
BoxObject 멤버 | CrystalDecisions.CrystalReports.Engine 네임스페이스
©2005 Business Objects SA All rights reserved.
Business Objects SA http://www.businessobjects.com/ 지원 서비스 http://korea.businessobjects.com/services/ |