CEditView::GetEditCtrl
呼叫 GetEditCtrl 取得編輯檢視使用的編輯控制項的參考。
CEdit& GetEditCtrl( ) const;
傳回值
對 CEdit 物件的參考。
備註
這個控制項是一種 CEdit,直接使用 CEdit 成員函式,因此,您可以管理 視窗編輯控制項。
警告
使用 CEdit 物件可以變更基礎 Windows 編輯控制項的狀態。例如,在中,因為 CEditView 快取這些設定以供編輯控制項及在列印,請不要變更定位點設定使用 CEdit::SetTabStops 函式。相反地,請使用 CEditView::SetTabStops。
範例
void CMyEditView::OnInitialUpdate()
{
CEditView::OnInitialUpdate();
// get the edit control and set some initial properties for it
CEdit& theEdit = GetEditCtrl();
// adjust the left margin without changing the right margin
DWORD dwMargins = theEdit.GetMargins();
theEdit.SetMargins(20, HIWORD(dwMargins));
// only accept 10k of text
theEdit.SetLimitText(10 * 1024);
}
需求
Header: afxext.h