CProgressCtrl::SetStep
針對進度列控制項指定步驟加入。
int SetStep(
int nStep
);
參數
- nStep
加入新的步驟。
傳回值
前一個步驟加入。
備註
將 CProgressCtrl::StepIt 步驟是對的呼叫將進度列目前位置的數量。
預設步驟加入為 10。
範例
CProgressCtrl myCtrl;
// Create a child progress control.
myCtrl.Create(WS_CHILD|WS_VISIBLE, CRect(10,10,200,30), pParentWnd,
IDC_PROGRESSCTRL);
// Set the size to be 1/10 of the total range.
int nLower, nUpper;
myCtrl.GetRange(nLower, nUpper);
myCtrl.SetStep((nUpper-nLower)/10);
需求
Header: afxcmn.h