Draw a line through two points on the legend layer.
Syntax: |
---|
FWizLegend.DrawLine(p1, p2) |
Parameters
Return Value
If an error occurs it returns false otherwise it returns true.
Example
Copy code | |
---|---|
var ctx = FWiz.GetLegendCtx();
ctx.DrawLine(new DlxPoint(-5, 0), new DlxPoint(5, 0));
|