Share

acedSetStatusBarProgressMeter

C++

int acedSetStatusBarProgressMeter(
    const ACHAR* pszLabel, 
    int nMinPos, 
    int nMaxPos
);

File

core_rxmfcapi.h

Description

This displays an option label and a progress meter on the AutoCAD status bar. Pass NULL or an empty string for the label if no label is desired.

Returns 0 if it successfully creates the label and progress meter; otherwise, returns -1.

Parameters

Parameters Description
pszLabel Progress meter's label
nMinPos Minimum position of the progress meter
nMaxPos Maximum position of the progress meter

Was this information helpful?