Click or drag to resize

ProcedureParameterFormat Property

A format string that represents the names and types of any parameters that are expected by this QuickLogic procedure when it is executed.

Namespace:  Demo3D.QuickLogic
Assembly:  Demo3D.Core (in Demo3D.Core.dll) Version: 15.0.2.11458
Syntax
C#
public string ParameterFormat { get; set; }

Property Value

Type: String
Remarks

The format for this is text interspersed with parameters in {name:type} format. If the QuickLogic procedure is a function that returns a result then add {returns:type}.

These are examples of ParameterFormat strings for a QuickLogic procedure:

"Order Load {sku:String} with Layers {numLayers:Int32} Store to Bin {binLoc:BinLocations}"

"Get Volume Of {load:Visual} {returns:Double}"

See Also