次の方法で共有


CommonFieldFormat クラス

レポート内のすべてのフィールドに共通の書式オプションを設定します。

このタイプのメンバの一覧については、「CommonFieldFormat のメンバ」を参照してください。

オブジェクト

   CommonFieldFormat

[Visual Basic]

Public Class CommonFieldFormat

[C#]

public class CommonFieldFormat

[C++]

__gc public class CommonFieldFormat

[VJ#]

public class CommonFieldFormat

解説

FieldFormat オブジェクトの CommonFormat プロパティを介して CommonFieldFormat オブジェクトを取得します。

次の例は、CommonFieldFormat オブジェクトを返します。

[Visual Basic]

Private Function GetCommonFieldFormat _
(ByVal reportObjectName As String) As CommonFieldFormat
   Dim field As FieldObject
   Dim commonFormat As CommonFieldFormat

   ' ReportObject を名前で取得し、FieldObject としてキャストします。
   If TypeOf _
   (Report.ReportDefinition.ReportObjects. _
   Item(reportObjectName)) Is FieldObject Then
      field = _
      Report.ReportDefinition.ReportObjects. _
      Item(reportObjectName)
      commonFormat = field.FieldFormat.CommonFormat
      GetCommonFieldFormat = commonFormat
   Else : GetCommonFieldFormat = Nothing
   End If
End Function 

[C#]

private CommonFieldFormat GetCommonFieldFormat
(string reportObjectName) 
{
   FieldObject field;
   CommonFieldFormat commonFormat;
   // ReportObject を名前で取得し、FieldObject としてキャストします。 
   field = 
   Report.ReportDefinition.ReportObjects[reportObjectName] 
   as FieldObject;
   if (field != null) 
   {
      // CommonFieldFormat オブジェクトを取得し、それを返します。
      commonFormat = field.FieldFormat.CommonFormat;
      return commonFormat;
   }
   else return null;
}

[C++]

CommonFieldFormat* GetCommonFieldFormat
(String* reportObjectName)
{
   FieldObject* field;
   CommonFieldFormat* commonFormat;

   // ReportObject を名前で取得し、FieldObject としてキャストします。 
   try
   {
      field = __try_cast<FieldObject*>
      (Report->ReportDefinition->
      ReportObjects->Item[reportObjectName]);

      // CommonFieldFormat オブジェクトを取得し、それを返します。
      commonFormat = field->FieldFormat->CommonFormat;
      return commonFormat;
   }
   catch(System::InvalidCastException*)
   {
      return 0;
   }
};

[VJ#]

private CommonFieldFormat GetCommonFieldFormat
(String reportObjectName) 
{
   FieldObject field;
   CommonFieldFormat commonFormat;
   // ReportObject を名前で取得し、FieldObject としてキャストします。 
   field = (FieldObject)
   Report.get_ReportDefinition().get_ReportObjects().get_Item(reportObjectName);
   if (field != null) 
   {
      // CommonFieldFormat オブジェクトを取得し、それを返します。
      commonFormat = field.get_FieldFormat().get_CommonFormat();
      return commonFormat;
   }
   else return null;
}

要件

名前空間 :CrystalDecisions.CrystalReports.Engine

プラットフォーム : Windows 98、Windows NT 4.0、Windows Millennium Edition、Windows 2000、Windows XP

アセンブリ: CrystalDecisions.Crystalreports.Engine(CrystalDecisions.Crystalreports.Engine.dll 内)

関連項目

CommonFieldFormat メンバ | CrystalDecisions.CrystalReports.Engine 名前空間