Description
Sets or returns how delimiters should be drawn on graphs. The BDKDelimitersLinesAndShading option is not available if you are graphing in Excel.
Syntax
object.DelimiterDisplayMode
Arguments
None.
Return Value
(BDKDelimiterDisplayMode) – one of the values:
| BDKDelimitersOff |
| BDKDelimitersLinesOnly |
| BDKDelimitersLinesAndShading |
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