Table of Contents

Property MeterProgress

Namespace
VectorDraw.Professional.vdObjects
Assembly
VectorDraw.Professional.dll

MeterProgress

Get the ProgressMeter object of the document.

public ProgressMeter MeterProgress { get; }

Property Value

ProgressMeter

Examples

Using MeterProgress while enumurating inside entities collection.

doc.MeterProgress.start("Searching...", doc.Model.Entities.Count);
foreach (vdFigure fig in doc.Model.Entities)
{
    doc.MeterProgress.Progress();
    //do something with fig entity.....
}
doc.MeterProgress.stop();