예제 #1
0
bool wxListBox::IsSelected(int N) const
{
    wxCHECK_MSG( IsValid(N), false,
        wxT("invalid index in wxListBox::Selected") );

    return MacIsSelected( N ) ;
}
예제 #2
0
파일: listbox.cpp 프로젝트: gitrider/wxsj2
bool wxListBox::IsSelected(int N) const
{
    wxCHECK_MSG( N >= 0 && N < m_noItems, FALSE,
        wxT("invalid index in wxListBox::Selected") );

    return MacIsSelected( N ) ;
}