안녕하세요

프로그램 과정에서 막혔던 문제들에 대한 해결책 정리


페이지 목록

2013년 5월 7일 화요일

[MFC] ListCtrl 함수

GetItemCount row 개수를 가져온다.

BOOL DeleteItem(
   int nItem
);
해당 row를 삭제한다.

DeleteAllItems (전체 Row 삭제)

GetItemText - 해당 Row, Col의 Text 가져오는 코드

int GetItemText(
   int nItem,
   int nSubItem,
   LPTSTR lpszText,
   int nLen
) const;
CString GetItemText(
   int nItem,
   int nSubItem
) const;

Parameters

nItem
The index of the item whose text is to be retrieved.
nSubItem
Specifies the subitem whose text is to be retrieved.
lpszText
Pointer to a string that is to receive the item text.
nLen
Length of the buffer pointed to by lpszText.
The version returning int returns the length of the retrieved string.
The version returning a CString returns the item text.