Link Search Menu Expand Document

bool enuSetHmiComponent(HVIEW pENUView, wchar_t* pStrFileName, wchar_t* pStrSymbol)

bool enuSetHmiComponent(HVIEW pENUView, wchar_t* pStrFileName, wchar_t* pStrSymbol)

Parameters

  • HVIEW pENUView

뷰 핸들을 입력합니다.

  • wchar_t* pStrFileName

HMI영역의 SVG 파일 이름을 입력합니다.

  • wchar_t* pStrSymbol

SVG 파일에 정의된 심볼 이름을 입력합니다.

Return Value

Type : bool

정상 설정 여부를 반환합니다.

Remarks

컴퍼넌트 뷰에 심볼을 디스플레이하기 위한 함수입니다.

Examples

void SetComponentView()
{
    HVIEW pView = enuCreateView(this->m_hWnd);
    enuSetComponentMode(pView, true);

    if (enuSetHmiComponent(pView, L"library\\hmi\\hmi_symbol.vg", L"ID_GAUGE"))
    {
        // TO DO JOB
    }    
}