bool enuSetHmiProperty(HSVG pSvg, wchar_t* pAttribute, wchar_t* pValue)
bool enuSetHmiProperty(HSVG pSvg, wchar_t* pAttribute, wchar_t* pValue)
Parameters
HSVG pSVG : 픽쳐 페이지 핸들을 입력합니다.
wchar_t* pAttribute : 속성 정보를 입력합니다. (“filename”)
wchar_t* pValue : 속성 값을 입력합니다.
Return Value
적용 여부를 반환합니다.
Remarks
Examples
HVIEW ViewHandle = NULL;
void CSampleView::OnInitialUpdate()
{
CView::OnInitialUpdate();
enuCreateProject();
// Load Project
enuLoadProjectFile(L"Project\\sample.enup");
// Create View
ViewHandle = enuCreateView(this->m_hWnd);
// edit mode unactivate.
enuSetEditOperationMode(ViewHandle , false);
// default mouse wheel control set.
enuSetDefaultWheelControl(ViewHandle , true);
// view activate
enuActivateView(ViewHandle );
// New Page Create.
CString strPicture = L"library\\hmi\\hmi.svg";
HSVG hsvg = enuGetHmiClass(strPicture .GetBuffer(0));
if (hsvg)
{
enuSetHmiProperty(hsvg, L"filename", L"library\\hmi\\new_hmi.svg");
}
}