|
Param |
Method |
Event |
|
|
IsInTablev3.5.1.05 or higher현재 커서가 표 안에 있는지를 확인합니다.
Return Values
Sample Codesvar CrossEditor = new NamoSE("test");
CrossEditor.EditorStart();
function OnInitCompleted(e) {
var info = CrossEditor.IsInTable();
if(info)
{
alert("커서가 표 안에 있습니다.");
}
else
{
alert("커서가 표 안에 없습니다.");
}
}
|