Previous Next


Delimiter1 Property (RDKGraphDefaults Object)

Description

Sets or returns the probability value of the first delimiter. To display delimiters, the DelimiterDisplayMode property must not be set to RDKDelimitersOff. The p-value always "tracks" the primary curve being graphed.

Syntax

object.Delimiter1

Arguments

None.

Return Value

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

Example

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