Contents Previous Next


Delimiter2 Property (BDKGraphDefaults Object)

Description

Specifies the probability value of the second delimiter. To display delimiters the DelimiterDisplayMode property must not be set to BDKDelimitersOff. The p-value always "tracks" the primary curve being graphed.

Syntax

object.Delimiter2

Arguments

None.

Return Value

(Double) – the probability value of the second delimiter.

Example

'Set the delimiters to show the P10 and P90 points of the curve:
With BDKApp.GraphDefaults
    .DelimiterDisplayMode = BDKDelimitersLinesOnly
    .Delimiter1 = .10
    .Delimiter2 = .90
End With