Jamie Villeneuve
Articles
-
canvas.strokeArc
canvas.strokeArc(x, y, radius_x, radius_y, start, end, rotation, color) Draw a stroked arc defined by the center position (x,y), with x radius radius_x, y radius radius_y, start and end angles (st...
-
sb.cloneObject
sb.cloneObject(referenceObjectName, newObjectName, parentName, data) Create a new control, table or group (newObjectName) within an existing parent (parentName) by copying all of the properties of...
-
Running Validator Tests from the Command Line using Storyboard
Tests can be run from the command line by adding the following engine options: -ovalidator,enable,draw,sbio_in=<channel>,sbio_out=<channel> -ocapture_playback,mode=playback_block,file=<path to tes...
-
Validator Test Report
A test report can be generated for a specific test run so that it can be shared as either a PDF or an HTML file. To generate the report from the command line, the path to the test run name. Window...
-
canvas.strokeCircle
canvas.strokeCircle(x, y, radius, color) Draw a stroked circle defined by the center position (x,y), with radius radius, and with the color color. Parameters: x The x position of ...
-
sb.deleteObject
sb.deleteObject(objectName) Delete an object that has been cloned using sb.cloneObject from the model. The object must be a control, a table, or a group. Parameters: objectName The fully q...
-
canvas.strokePoly
canvas.strokePoly(xarray, yarray, color) or canvas.strokePoly(xyarray, color) Stroke a polygon through the points defined in xytable with a specific color. The width of the line is the last value ...
-
sb.env
sb.env("string_key"[,"string_key2, "string_key3"]) Return information about the Storyboard runtime environment. The input is one or more strings that match the key to look up. The following table ...
-
canvas.strokeRect
canvas.strokeRect(x1, y1, x2, y2, color) Stroke a rectangle outline defined by the bounding area of x1,y2 to x2,y2 with a specific color. The width of the outline is the last value set to canvas.l...
-
sb.getControlAttrs
sb.getControlAttrs(controlName, tags ...) Get properties for a control. Key name is the name of the control or a variable. Tags can be a list of the following values: x, y, width, height, hidden, ...