Visit Gigasoft's Web Site
 ProEssentials v9 Help

SubsetForPointTypes

Scope

Pego, Pesgo, Pe3do, Pepso

Type

Property Array of type Int32

Default

Empty

.NET

PePlot.SubsetForPointTypes

Ocx|Vcl

SubsetForPointTypes

DLL

PEP_naSUBSETFORPOINTTYPES

 

Purpose

This property will determine which subset indices will use PointTypes and which will use the default type defined with the SubsetPointTypes property.

 

Comments

PePlot.SubsetForPointTypes members of Pego.PePlot, Pesgo.PePlot, Pe3do.PePlot, Pepso.PePlot

 

Within the demo, see example 133.

 

The following examples show how to use PointTypes on the 3rd and 5th subsets . All other subsets will use the point types defined with SubsetPointTypes.

 

.NET Example

Pego1.PePlot.SubsetForPointTypes(0) = 2 'third subset

Pego1.PePlot.SubsetForPointTypes(1) = 4 'fifth subset

 

OCX Example

Pego1.SubsetForPointTypes(0) = 2 'third subset

Pego1.SubsetForPointTypes(1) = 4 'fifth subset

 

VCL Example

PEGraph1.SubsetForPointTypes[0] := 2; {third subset}

PEGraph1.SubsetForPointTypes[1] := 4; {fifth subset}

 

C / C++ Example

int nArray[2];

nArray[0] = 2; // third subset

nArray[1] = 4; // fifth subset

PEvset (hWndPE, PEP_naSUBSETFORPOINTTYPES, nArray, 2)