function AddMsg()
{
var ctrlman = m_Map.GetCtrlMan();
var uiman = ctrlman.GetUIMan();
var util = m_Map.GetUtility();
// ¸Þ½ÃÁö ¿µ¿ª
stcMsgArea = uiman.CreateUI_StaticText(uiman);
stcMsgArea.SetParent(uiman);
stcMsgArea.SetBound(1, 4, 450, 50);
stcMsgArea.SetAnchor(util.GetConstToValue("TMUIOBJ_ANCHOR_LEFT") | util.GetConstToValue("TMUIOBJ_ANCHOR_TOP"));
stcMsgArea.SetBackColor(util.RGBColor(255, 255, 255));
stcMsgArea.SetFont(12, util.GetConstToValue("TM_FONT_STYLE_BOLD"), "±¼¸²");
stcMsgArea.SetPen(util.GetConstToValue("PS_SOLID"), 2, util.RGBColor(255, 255, 0));
stcMsgArea.SetBrush(util.GetConstToValue("BS_SOLID"), util.RGBColor(255, 0, 255), 0);
stcMsgArea.SetCaption("À̺¥Æ® 󸮿¡ ´ëÇÑ °á°ú¸¦ ¿©±â¿¡ º¸¿©ÁÝ´Ï´Ù.");
stcMsgArea.SetCanFocus(0);
stcMsgArea.SetCanClick(0);
stcMsgArea.SetTransparent(1);
stcMsgArea.SetAlpha(50);
stcMsgArea.SetTextStyle(util.GetConstToValue("DRAWTEXT_STYLE_BOARD"));
stcMsgArea.SetTextAlign(util.GetConstToValue("TEXT_ALIGN_MIDDLE"));
}