GridData コントロールには、行および列のグリッドとしての 2 次元データ配列がオプションのラベルと一緒に表示されます。 これらは基本の GridData または GridData パラメータに関連付けられています。
siControlGrid コントロール タイプ列挙型を含む PPGLayout.AddItem メソッドまたは PPGLayout::AddItem メソッドを使用して作成できます。
// ** during parameter definition (for example, in the Define callback) ** // use the convenient method to add the grid to the custom property var oParam = oPSet.AddGridParameter( "MyGrid" ); // now to get the actual grid from the parameter, use [Get]Value (not [Get]Source) var oGrid = oParam.Value; oGrid.BeginEdit(); oGrid.RowCount = 4; oGrid.ColumnCount = 4; oGrid.SetRowValues( 0, new Array(0, 0.5, 0.75, 0.1) ); oGrid.SetRowValues( 1, new Array(0.1, 0.5, 0.75, 0.1) ); oGrid.SetRowValues( 2, new Array(0.2, 0.99, 0.75, 0.1) ); oGrid.SetRowValues( 3, new Array(0.3, 0.5, 0.75, 0.1) ); var aCols = new Array( "R", "G", "B", "A" ); for ( var i=0; i<4; i++ ) { oGrid.SetRowLabel( i, "Vertex "+i ); oGrid.SetColumnLabel( i, aCols[i] ); } oGrid.EndEdit(); // ** during control creation (for example, in the DefineLayout callback) ** // no convenient method for the grid control oLayout.AddItem( "MyGrid", "", siControlGrid );//oItem.SetAttribute(siDecimals, 0 );
基本の GridData または GridData パラメータは、GridData または GridData オブジェクトの実際のインスタンスです。 GridData または GridData オブジェクトに使用できるすべてのメソッドとプロパティは、(PPG.Inspected から) Parameter.Value を使用してロジックを介して動的に使用できます。つまり、特定の項目のパラメータを取得するのに使用したり、GridData または GridData オブジェクトへのポインタを取得したりできる ProjectItemCollection を返します。(「カスタム プロパティを動的に変更する」を参照してください)。
グリッド コントロールを使用した作業の詳細については、GridData または GridData オブジェクトのドキュメントにある例を参照してください。