Поделиться через


CProgressCtrl::OffsetPos

Advances the progress bar control's current position by the increment specified by nPos and redraws the bar to reflect the new position.

int OffsetPos(
   int nPos 
);

Параметры

  • nPos
    Amount to advance the position.

Возвращаемое значение

The previous position of the progress bar control.

Пример

CProgressCtrl myCtrl;

// Create a child progress control.
myCtrl.Create(WS_CHILD|WS_VISIBLE, CRect(10,10,200,30), pParentWnd, 
   IDC_PROGRESSCTRL);

// Offset the position by one-fourth of the total range.
int nLower, nUpper;
myCtrl.GetRange(nLower, nUpper);
myCtrl.OffsetPos((nUpper-nLower)/4);   

Требования

Header: afxcmn.h

См. также

Основные понятия

CProgressCtrl Class

CProgressCtrl Members

Hierarchy Chart

CProgressCtrl::SetPos

CProgressCtrl::SetRange

CProgressCtrl::StepIt