CEditView::GetEditCtrl
호출 GetEditCtrl 편집 보기의 편집 컨트롤을 참조 합니다.
CEdit& GetEditCtrl( ) const;
반환 값
CEdit 개체에 대한 참조입니다.
설명
이 컨트롤의 형식입니다 CEdit, Windows edit 컨트롤을 사용 하 여 직접 조작할 수 있는 CEdit 멤버 함수.
주의 |
---|
사용 하는 CEdit 개체 수 변경 상태를 내부 Windows 편집 컨트롤.사용 하 여 탭 설정을 변경 해야 하지 예를 들어,는 CEdit::SetTabStops 때문에 기능 CEditView 편집 컨트롤에서 및 인쇄에 사용 하기 위해 이러한 설정을 캐시 합니다.대신 사용 하 여 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);
}
요구 사항
헤더: afxext.h