VectorImage IsStreamed
Gets or sets a value indicating whether the vector image is set to stream to the marking device without downloading. Streaming is used when the generated image is so large that it could take more time to process and download to the marking device, potentially delaying the start up time for the marking.
public bool IsStreamed{get;Set} |
Return value
bool | Streaming status |
Example
Copy
VectorImage vectorImage = scanDocument.CreateVectorImage("image1", DistanceUnit.Millimeters);
vectorImage.SetMarkSpeed(1000);
vectorImage.SetJumpSpeed(2000);
vectorImage.SetJumpDelay(100);
vectorImage.SetMarkDelay(100);
//Set Laser Delays
vectorImage.SetLaserOnDelay(10);
vectorImage.SetLaserOffDelay(10);
vectorImage.IsStreamed = true;