|
TalMap SDK Libary Reference |
XVisibleState::GetCanFocus |
°³Ã¼(Object)°¡ Æ÷Ä¿½º¸¦ ¹ÞÀ»¼ö ÀÖ´ÂÁöÀÇ ¿©ºÎ¸¦ È®ÀÎÇÕ´Ï´Ù. |
|
|
|
Parameters
|
|
Return Value
|
°³Ã¼ÀÇ Å¬¸¯(Click) °¡´É ¿©ºÎ °ª. (0: Æ÷Ä¿½º¸¦ ¹ÞÀ» ¼ö ¾ø´Ù, 1: Æ÷Ä¿½º¸¦ ¹ÞÀ» ¼ö ÀÖ´Ù)
|
|
|
|
Remarks
|
GetCanFocus ´Â XVisibleState ÀÇ Method·Î Á¦°øµË´Ï´Ù.
»ç¿ëÀÚ´Â ÀÌ ¸Þ¼Òµå¸¦ ÀÌ¿ëÇÏ¿© °³Ã¼°¡ Æ÷Ä¿½º¸¦ ¹ÞÀ» ¼ö ÀÖ´ÂÁöÀÇ ¿©ºÎ¸¦ È®ÀÎÇÒ ¼ö ÀÖ½À´Ï´Ù.
|
|
|
|
Example
|
|
var ctrlman = m_Map.GetCtrlMan();
var poiman = ctrlman.GetPOIMan();
if (poiman.GetCanFocus()) {
alert("Can Focus"); // Can Focus
} else {
alert("Can't Focus"); // Can't Focus
}
|
|
|
nclude "CXCtrlMan.h"
#include "CXPOIMan.h"
CXCtrlMan ctrlman = m_Map.GetCtrlMan();
CXPOIMan poiman = ctrlMan.GetPOIMan();
if (poiman.GetCanFocus()) {
AfxMessageBox(_T("Can Focus")); // Can Focus
} else {
AfxMessageBox(_T("Can't Focus")); // Can't Focus
}
|
|
|
|
See Also
|