CProgressCtrl::GetStep
擷取目前進度列控制項的進度列的步驟加入。
int GetStep() const;
傳回值
進度列的步驟加入。
備註
將 CProgressCtrl::StepIt 步驟是對的呼叫將進度列目前位置的數量。
這個方法會將 PBM_GETSTEP 資訊,在 Windows SDK說明。
需求
標題: afxcmn.h
這個控制項在 Windows Vista (含) 以後版本支援。
這個方法的其他需要。 Windows Vista 通用控制項的組建需求說明。
範例
下列程式碼範例會定義變數, m_progressCtrl,用來以程式設計方式存取進度列控制項。 這個變數用於下一個範例。
// Variable to access the progress control
CProgressCtrl m_progressCtrl;
下列程式碼範例會擷取目前進度列控制項的步驟加入。
// Get the step increment for the progress control.
CString str;
int incr = m_progressCtrl.GetStep();
str.Format(_T("The step increment is %d."), incr);
AfxMessageBox(str, MB_ICONEXCLAMATION);