Simulation & Probabilistic Analysis SDK
Add Distribution Fitting & Simulation Features to Your Applications

SPA SDK Help HomeLearn More About the SPA SDK

SPAConst (object)

This object works as a storage for constants that can be used with the other object methods and properties. In VBA, you don't need to explicitly create the SPAConst object, and can use the object properties directly.

Properties

Property
Description
Examples
ColorAuto

ColorAqua
ColorBlack
...

ColorRGB
Color constants.
  SPAApplicaton.GraphOptions.BackColor = SPAConst.ColorAuto
  SPAApplicaton.GraphOptions.ForeColor = SPAConst.ColorNavy
  SPAApplicaton.GraphOptions.DataColor = SPAConst.ColorRGB(64,64,64)
  
TitleAuto Forces the SDK to use the default title, depending on the SPAApplication.Language property value.
  SPAApplicaton.GraphOptions.XAxis.Title = SPAConst.TitleAuto
  SPAApplicaton.GraphOptions.DataTitle = SPAConst.TitleAuto
  
NumBinsAuto Forces the SDK to automatically calculate the number of bins based on the sample size when creating the empirical data graphs.
  SPAApplicaton.GraphOptions.NumBins = SPAConst.NumBinsAuto
  
LineQualityAuto
LineQualityVeryLow
LineQualityLow
LineQualityMedium
LineQualityHigh
LineQualityVeryHigh
Theoretical distribution curve quality level constants.
  SPAApplicaton.GraphOptions.LineQuality = SPAConst.LineQualityHigh
  
LineWidthAuto Default line width.
  SPAApplicaton.GraphOptions.LineWidth = SPAConst.LineWidthAuto
  SPAApplicaton.GraphOptions.DataLineWidth = SPAConst.LineWidthAuto
  
MaxPointsAuto
MaxPointsUnlimited
Default & unlimited max. number of points per theoretical distribution graph (applies to the P-P Plot, Q-Q Plot, and Probability Difference graphs).
  SPAApplicaton.GraphOptions.MaxPoints = SPAConst.MaxPointsUnlimited
  
PointSizeAuto Default point size (applies to the P-P Plot, Q-Q Plot, and Probability Difference graphs).
  SPAApplicaton.GraphOptions.PointSize = SPAConst.PointSizeAuto
  
PointStyleAuto
PointStyleNone
PointStyleCircle
PointStyleDiamond
PointStyleSquare
Point style (applies to the P-P Plot, Q-Q Plot, and Probability Difference graphs).
  SPAApplicaton.GraphOptions.PointStyle = SPAConst.PointStyleDiamond
  

Copyright © MathWave Technologies
www.mathwave.com