DataEngine for .NET
ViewDefinition プロパティ (C1PivotEngine)
使用例 

C1.PivotEngine アセンブリ > C1.PivotEngine 名前空間 > C1PivotEngine クラス : ViewDefinition プロパティ
PivotEngine ビュー定義を XML 文字列として取得または設定します。
シンタックス
'宣言
 
Public Property ViewDefinition As System.String
public System.string ViewDefinition {get; set;}
解説
このプロパティは通常、現在の PivotEngine ビューを アプリケーション設定として存続させるために使用されます。
使用例

以下のコードは、アプリケーションの終了時に PivotEngine ビューをアプリケーション設定として保存し、 アプリケーションの開始時にそのビューを ロードする方法を示します。

このコードは、「PivotEngineView」という名前の文字列プロパティがアプリケーション設定に含まれていることを 前提とします。

public Form1()
{
  InitializeComponent();

  // デフォルトビューをロードします
  C1PivotEngine fp = GetPivotEngine();
  string view = Properties.Settings.Default.PivotEngineView;
  if (!string.IsNullOrEmpty(view))
  {
    fp.ViewDefinition = Properties.Settings.Default.PivotEngineView;
  }
}
protected override void OnClosed(EventArgs e)
{
  // 現在のビューをデフォルトとして保存します
  C1PivotEngine fp = GetPivotEngine();
  Properties.Settings.Default.PivotView = fp.ViewDefinition;
  Properties.Settings.Default.Save();
}
参照

C1PivotEngine クラス
C1PivotEngine メンバ