Visit Gigasoft's Web Site
 ProEssentials v9 Help

SubsetsToTable

Scope

Pego

Type

Property Array of type Int32

Default

empty

.NET

PeTable.SubsetsToTable

Ocx|Vcl

SubsetsToTable

DLL

PEP_naSUBSETSTOTABLE

 

Purpose

This property array controls visiblity and optional order of subset within the Graph objects built in table (GraphPlusTable non-zero.) This property array stores zero-based subset indices which represent subsets to table. If this property array is empty, all subsets are tabled, see below how to empty this array to show all subsets.

 

For example: to show only the 1st, 3d and 5th subsets.

Pego1.PeTable.SubsetsToTable(0) = 0 ' 0 means zero based first subset

Pego1.PeTable.SubsetsToTable(1) = 2 ' 2 means zero based 3rd subset

Pego1.PeTable.SubsetsToTable(2) = 4 ' 4 means zero based 5th subset

 

Comments

PeData.SubsetsToTable members of Pego.PeTable,

 

Within the demo, see example 033 for more info.

 

You may also need to empty this array in order to show all subsets. You can empty this property array and other property arrays as follows:

.NET: Pego1.PeData.SubsetsToTable.Clear()

 

ActiveX: Pego1.SubsetsToTable(-1) = 0

 

SDK/DLL: PEvset (hWndPE, PEP_naSUBSETSTOTABLE, nArray, 0)