函式功能
對於進度欄控制項指定步驟遞增。
函式原型
int SetStep( int nStep );
參數
nStep
新步驟遞增。
返回值
上述步驟遞增。
備註
步驟增量對 CProgressCtrl::StepIt 的調用增加進度欄的當前位置的數量。
默認步驟增量是10。
示例
C++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);
要求
頭檔案:afxcmn.h