void enuSetWindowColor() method
void enuSetWindowColor(
[in] HVIEW hView,
[in] byte red,
[in] byte green,
[in] byte blue,
};
Parameters
hView [in]
Type:HVIEW
enuSpace View Handle
red [in]
Type:byte
뷰의 윈도우 색상(red) value - 0~255
green [in]
Type:byte
뷰의 윈도우 색상(green) value - 0~255
blue [in]
Type:byte
뷰의 윈도우 색상(blue) value - 0~255
Return value
Type : void
Remarks
enuSpace SDK를 이용시, 뷰(2D/3D)의 위도우 색상을 변경하고자 할때 사용하는 함수.
Examples
enuSpace SDK
HVIEW ViewHandle = NULL;
void CSampleView::OnInitialUpdate()
{
CView::OnInitialUpdate();
enuCreateProject();
enuLoadProjectFile(L"Project\\sample.enup");
ViewHandle = enuCreateView(this->m_hWnd);
enuSetWindowColor(ViewHandle, 128, 128, 128);
}
Reference
'enuSpace SDK API > enuSpace SDK API 2D' 카테고리의 다른 글
enuSpace :: enuSelectObjectListClear() (0) | 2016.02.17 |
---|---|
enuSpace :: enuSetCanvasColor() (0) | 2016.01.22 |
enuSpace :: enuSetMouseWheelCallBack() (0) | 2016.01.21 |
enuSpace :: enuSetMouseMoveCallBack() (0) | 2016.01.21 |
enuSpace :: enuSetMButtonUpCallBack() (0) | 2016.01.21 |