instruction
stringlengths 21
57
⌀ | output
stringlengths 3
1.48k
⌀ |
---|---|
테이블(Table)의 Property중 visible의 기능을 설명해줘 | 컨트롤의 보임 여부 설정 |
테이블(Table)의 Property중 visible의 예제를 알려줘 | SetCtlProp(\"Table0\ \"visiable\ \"1\")\nGetCtlProp(\"Table0\ \"visiable\") |
테이블(Table)의 Property중 transmode의 기능을 설명해줘 | 컨트롤 배경을 부모컨트롤의 배경색과 동일하게 처리할것인지 여부" |
테이블(Table)의 Property중 transmode의 예제를 알려줘 | SetCtlProp(\"Table0\ \"transmode\ \"1\") |
테이블(Table)의 Property중 outlinecolor의 기능을 설명해줘 | 외곽선 색상 |
테이블(Table)의 Property중 outlinecolor의 예제를 알려줘 | SetCtlProp(\"Table0\ \"outlinecolor\ \"161:220221223\") |
테이블(Table)의 Property중 insidelinecolor의 기능을 설명해줘 | 내부선 색상 |
테이블(Table)의 Property중 insidelinecolor의 예제를 알려줘 | SetCtlProp(\"Table0\ \"inlinecolor\ \"161:220221223\") |
테이블(Table)의 Property중 dim의 기능을 설명해줘 | 테이블의 dim 처리 |
테이블(Table)의 Property중 dim의 예제를 알려줘 | SetCtlProp(\"Table0\ \"dim\ \"1\") |
테이블(Table)의 Property중 colcount의 기능을 설명해줘 | 테이블 컬럼 개수 |
테이블(Table)의 Property중 colcount의 예제를 알려줘 | SetCtlProp(\"Table0\ \"colcount\ \"5\")\nGetCtlProp(\"Table0\ \"colcount\") |
테이블(Table)의 Property중 rowcount의 기능을 설명해줘 | 테이블 로우 개수 |
테이블(Table)의 Property중 rowcount의 예제를 알려줘 | SetCtlProp(\"Table0\ \"rowcount\ \"3\")\nGetCtlProp(\"Table0\ \"rowcount\") |
테이블(Table)의 Property중 outline의 기능을 설명해줘 | 테이블 외곽선 사용 설정 (bLeft bTop bRight bBottom) |
테이블(Table)의 Property중 outline의 예제를 알려줘 | SetCtlProp(\"Table0\ \"outline\ \"1111\")\nGetCtlProp(\"Table0\ \"outline\") |
테이블(Table)의 Property중 caption의 기능을 설명해줘 | 셀 캡션 설정 |
테이블(Table)의 Property중 caption의 예제를 알려줘 | SetPropTable(\"Table0\ \"caption\ nRow, nCol, \"szCaption\")\nGetPropTable(\"Table0\ \"caption\ nRow, nCol) |
테이블(Table)의 Property중 fgcolor의 기능을 설명해줘 | 테이블 셀 캡션의 글자색 |
테이블(Table)의 Property중 fgcolor의 예제를 알려줘 | SetPropTable(\"Table0\ \"fgcolor\ nRow, nCol, \"000:000000000\") |
테이블(Table)의 Property중 colvisible의 기능을 설명해줘 | 컬럼 보임 여부 |
테이블(Table)의 Property중 colvisible의 예제를 알려줘 | SetPropTable(\"Table0\ \"colvisible\ nRow, nCol, \"1\")\nGetPropTable(\"Table0\ \"colvisible\ nRow, nCol) |
테이블(Table)의 Property중 plusminuscolor의 기능을 설명해줘 | 증감색을 사용할지 여부 설정 |
테이블(Table)의 Property중 plusminuscolor의 예제를 알려줘 | SetPropTable(\"Table0\ \"plusminuscolor\ nRow, nCol, \"1\") |
테이블(Table)의 Property중 fontsize의 기능을 설명해줘 | 표시할 문자열의 사이즈 설정 |
테이블(Table)의 Property중 fontsize의 예제를 알려줘 | SetPropTable(\"Table0\ \"fontsize\ nRow, nCol, \"1\") |
테이블(Table)의 Property중 halign의 기능을 설명해줘 | 문자열의 수평 정렬 설정, 0 – 왼쪽, 1 – 가운데, 2 – 오른쪽" |
테이블(Table)의 Property중 halign의 예제를 알려줘 | SetPropTable(\"Table0\ \"halign\ nRow, nCol, \"1\") |
테이블(Table)의 Property중 valign의 기능을 설명해줘 | 문자열 수직 정렬 설정, 0 – 위, 1 – 가운데, 2 – 아래" |
테이블(Table)의 Property중 valign의 예제를 알려줘 | SetPropTable(\"Table0\ \"valign\ nRow, nCol, \"1\") |
테이블(Table)의 Property중 fontstyle의 기능을 설명해줘 | 표시할 문자열의 밑줄 설정 |
테이블(Table)의 Property중 fontstyle의 예제를 알려줘 | SetPropTable(\"Table0\ \"fontstyle\ nRow, nCol, \"1\") |
테이블(Table)의 Property중 mask의 기능을 설명해줘 | 표시할 문자열의 마스킹 설정\"숫자/문자, 0표시여부, PreFix, PostFix, 마스크처리여부, 마스크포멧, 소수점자리수, 천단위부호 표시여부, -부호표시여부" |
테이블(Table)의 Property중 mask의 예제를 알려줘 | SetCtlProp(\"Table0\ \"mask\ nRow, nCol, \"1,0,,,1,##.##,0,1,0\") |
테이블(Table)의 Property중 paddinginfo의 기능을 설명해줘 | 표시할 문자열의 패딩 사이즈 지정 (nLeft, nTop, nRight, nBottom) |
테이블(Table)의 Property중 paddinginfo의 예제를 알려줘 | SetCtlProp(\"Table0\ \"paddinginfo\ nRow, nCol, \"0,0,0,0\")\nGetCtlProp(\"Table0\ \"paddinginfo\ nRow, nCol) |
테이블(Table)의 Property중 colwidth의 기능을 설명해줘 | 컬럼 너비 설정 |
테이블(Table)의 Property중 colwidth의 예제를 알려줘 | SetPropTable(\"Table0\ \"colwidth\ nRow, nCol, \"10\") |
테이블(Table)의 Property중 autofontsize의 기능을 설명해줘 | 표시할 문자열의 사이즈를 컨트롤 사이즈에 맞게 표시할지 여부" |
테이블(Table)의 Property중 autofontsize의 예제를 알려줘 | SetPropTable(\"Table0\ \"autofontsize\ nRow, nCol, \"1\") |
테이블(Table)의 Property중 rowheight의 기능을 설명해줘 | 로우 높이 설정 |
테이블(Table)의 Property중 rowheight의 예제를 알려줘 | SetPropTable(\"Table0\ \"rowheight\ nRow, nCol, \"30\") |
테이블(Table)의 Property중 rowvisible의 기능을 설명해줘 | 로우 표시 설정 |
테이블(Table)의 Property중 rowvisible의 예제를 알려줘 | SetPropTable(\"Table0\ \"rowvisible\ nRow, nCol, \"1\") |
테이블(Table)의 Event중 OnClick의 예제를 알려줘 | 셀을 클릭 이벤트가 발생 했을 때. 파라미터(lRow: 발생 위치의 서브행,lCol: 발생 위치의 열) |
테이블(Table)의 Event중 CellDataChanged의 예제를 알려줘 | 셀의 데이터가 변경되었을 때 발생, 파라미터(lRow: 발생 위치의 서브행,lCol: 발생 위치의 열,szOldData: 원래 데이터,szNewData: 새로운 데이터,ByReal: 리얼여부) |
호가테이블(HogaTable)의 Property중 ly_vert의 기능을 설명해줘 | 세로배치시 레이아웃 설정, (nLeft, nTop, nWidth, nHeight, bVisiable) |
호가테이블(HogaTable)의 Property중 ly_vert의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"ly_vert\ szVal) |
호가테이블(HogaTable)의 Property중 ly_horz의 기능을 설명해줘 | 가로배치시 레이아웃 설정, (nLeft, nTop, nWidth, nHeight, bVisiable) |
호가테이블(HogaTable)의 Property중 ly_horz의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"ly_horz\ szVal) |
호가테이블(HogaTable)의 Property중 left의 기능을 설명해줘 | 컨트롤의 왼쪽 좌표 설정 |
호가테이블(HogaTable)의 Property중 left의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"left\ szVal)\nGetCtlProp(\"HogaTable0\ \"left\") |
호가테이블(HogaTable)의 Property중 top의 기능을 설명해줘 | 컨트롤의 Top 좌표 설정 |
호가테이블(HogaTable)의 Property중 top의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"top\ szVal)\nGetCtlProp(\"HogaTable0\ \"top\") |
호가테이블(HogaTable)의 Property중 width의 기능을 설명해줘 | 컨트롤의 너비 설정 |
호가테이블(HogaTable)의 Property중 width의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"width\ 300)\nGetCtlProp(\"HogaTable0\ \"width\") |
호가테이블(HogaTable)의 Property중 height의 기능을 설명해줘 | 컨트롤의 높이 설정 |
호가테이블(HogaTable)의 Property중 height의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"height\ 30)\nGetCtlProp(\"HogaTable0\ \"height\") |
호가테이블(HogaTable)의 Property중 enabled의 기능을 설명해줘 | 활성화 여부 설정 |
호가테이블(HogaTable)의 Property중 enabled의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"enable\ \"1\")\nGetCtlProp(\"HogaTable0\ \"enable\") |
호가테이블(HogaTable)의 Property중 bgcolor의 기능을 설명해줘 | Label의 배경색 설정 |
호가테이블(HogaTable)의 Property중 bgcolor의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"bgcolor\ \"108:135206235\") |
호가테이블(HogaTable)의 Property중 alpha의 기능을 설명해줘 | 컨트롤 투명도 설정 |
호가테이블(HogaTable)의 Property중 alpha의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"alpha\ \"1\") |
호가테이블(HogaTable)의 Property중 visible의 기능을 설명해줘 | 컨트롤의 보임 여부 설정 |
호가테이블(HogaTable)의 Property중 visible의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"visiable\ \"1\")\nGetCtlProp(\"HogaTable0\ \"visiable\") |
호가테이블(HogaTable)의 Property중 transmode의 기능을 설명해줘 | 컨트롤 배경을 부모컨트롤의 배경색과 동일하게 처리할것인지 여부 |
호가테이블(HogaTable)의 Property중 transmode의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"transmode\ \"1\") |
호가테이블(HogaTable)의 Property중 outlinecolor의 기능을 설명해줘 | 외곽선 색상 |
호가테이블(HogaTable)의 Property중 outlinecolor의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"outlinecolor\ \"161:220221223\") |
호가테이블(HogaTable)의 Property중 insidelinecolor의 기능을 설명해줘 | 내부선 색상 |
호가테이블(HogaTable)의 Property중 insidelinecolor의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"inlinecolor\ \"161:220221223\") |
호가테이블(HogaTable)의 Property중 dim의 기능을 설명해줘 | 테이블의 dim 처리 |
호가테이블(HogaTable)의 Property중 dim의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"dim\ \"1\") |
호가테이블(HogaTable)의 Property중 colcount의 기능을 설명해줘 | 테이블 컬럼 개수 |
호가테이블(HogaTable)의 Property중 colcount의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"colcount\ \"5\")\nGetCtlProp(\"HogaTable0\ \"colcount\") |
호가테이블(HogaTable)의 Property중 rowcount의 기능을 설명해줘 | 테이블 로우 개수 |
호가테이블(HogaTable)의 Property중 rowcount의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"rowcount\ \"3\")\nGetCtlProp(\"HogaTable0\ \"rowcount\") |
호가테이블(HogaTable)의 Property중 outline의 기능을 설명해줘 | 테이블 외곽선 사용 설정 (bLeft bTop bRight bBottom) |
호가테이블(HogaTable)의 Property중 outline의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"outline\ \"1111\")\nGetCtlProp(\"HogaTable0\ \"outline\") |
호가테이블(HogaTable)의 Property중 caption의 기능을 설명해줘 | 셀 캡션 설정 |
호가테이블(HogaTable)의 Property중 caption의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"caption\ nRow, nCol, \"szCaption\")\nGetPropTable(\"HogaTable0\ \"caption\ nRow, nCol) |
호가테이블(HogaTable)의 Property중 fgcolor의 기능을 설명해줘 | 테이블 셀 캡션의 글자색 |
호가테이블(HogaTable)의 Property중 fgcolor의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"fgcolor\ nRow, nCol, \"000:000000000\") |
호가테이블(HogaTable)의 Property중 plusminuscolor의 기능을 설명해줘 | 증감색을 사용할지 여부 설정 |
호가테이블(HogaTable)의 Property중 plusminuscolor의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"plusminuscolor\ nRow, nCol, \"1\") |
호가테이블(HogaTable)의 Property중 fontsize의 기능을 설명해줘 | 표시할 문자열의 사이즈 설정 |
호가테이블(HogaTable)의 Property중 fontsize의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"fontsize\ nRow, nCol, \"1\") |
호가테이블(HogaTable)의 Property중 halign의 기능을 설명해줘 | 문자열의 수평 정렬 설정, 0 – 왼쪽, 1 – 가운데, 2 – 오른쪽" |
호가테이블(HogaTable)의 Property중 halign의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"halign\ nRow, nCol, \"1\") |
호가테이블(HogaTable)의 Property중 valign의 기능을 설명해줘 | 문자열 수직 정렬 설정, 0 – 위, 1 – 가운데, 2 – 아래" |
호가테이블(HogaTable)의 Property중 valign의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"valign\ nRow, nCol, \"1\") |
호가테이블(HogaTable)의 Property중 fontstyle의 기능을 설명해줘 | 표시할 문자열의 밑줄 설정 |
호가테이블(HogaTable)의 Property중 fontstyle의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"fontstyle\ nRow, nCol, \"1\") |
호가테이블(HogaTable)의 Property중 mask의 기능을 설명해줘 | 표시할 문자열의 마스킹 설정\"숫자/문자, 0표시여부, PreFix, PostFix, 마스크처리여부, 마스크포멧, 소수점자리수, 천단위부호 표시여부, -부호표시여부 |
호가테이블(HogaTable)의 Property중 mask의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"mask\ nRow, nCol, \"1,0,,,1,##.##,0,1,0\") |
호가테이블(HogaTable)의 Property중 paddinginfo의 기능을 설명해줘 | 표시할 문자열의 패딩 사이즈 지정 (nLeft, nTop, nRight, nBottom) |
호가테이블(HogaTable)의 Property중 paddinginfo의 예제를 알려줘 | SetCtlProp(\"HogaTable0\ \"paddinginfo\ nRow, nCol, \"0,0,0,0\")\nGetCtlProp(\"HogaTable0\ \"paddinginfo\ nRow, nCol) |
호가테이블(HogaTable)의 Property중 colwidth의 기능을 설명해줘 | 컬럼 너비 설정 |
호가테이블(HogaTable)의 Property중 colwidth의 예제를 알려줘 | SetPropTable(\"HogaTable0\ \"colwidth\ nRow, nCol, \"10\") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.