- Today
- Total
- OSHP
- 라즈베리파이
- Ribbon
- mariaDB 설치
- mariaDB 외부접속
- 다중 Filter
- .mine
- usb 인식 불가
- <<<<<<<<
- ImageList Icon 변환
- MariaDB
- c#
- UltraToolbarsManager
- Raspberry Pi
- startActivity
- node.js
- ContextMenuStrip
- 라즈베리 피이
- node.js 설치
- ubuntu
- 자동 닫힘
- mp4 재생
- ScrollBarTrackPolicy
- WebViewClient
- RaspberryPi
- OpenFileDialog
- Spread
- 동영상 오류
- Image icon 변환
- onPageFinished
목록Language/FarPoint Spread (6)
Realman's World
Column Header를 클릭했을 때 Sorting 시키려면 SetColumnAllowAutoSort 함수를 이용하면 된다. spsGateDtlInfo.SetColumnAllowAutoSort(i, spsGateDtlInfo.ColumnCount, true); 첫번째 인자는 시작 Column, 두번째 인자는 Column 개수, 세번째 인자는 자동 Sorting 여부를 지정해 준다.
일반적으로 Spread의 Cell에 데이터를 입력할 경우 엑셀처럼 초기화되지 않고 마지막 자리에 데이터가 입력된다. 이때 엑셀처럼 초기화시키고 데이터를 입력하려면 Spread Designer 에서 Spread를 선택한 후 EditReplaceMode를 true로 설정하면 된다.
Cell에 CheckBox를 설정하는 것은 Designer에서 CellType을 CheckBox로 표시하면 된다. 이때 CheckBox의 상태를 Three State로 하고 싶다면 CellType 속성에서 ThreeState를 True로 변경하면된다. 그런데 코딩을 하다가 Indeterminate 상태를 설정하려고 할 때 True와 False 처럼 Text를 변경하는 것으로는 되지 않았다. 보통 True를 설정할때는 Text나 Value를 String 형 "True" 으로 설정하면 된다. False 의 경우는 Text나 Value를 ""로 설정하면 된다. Indeterminate의 경우는 Value를 2로 설정하면 된다. 그리고 보통의 체크 박스의 형태가 아닌 특정 이미지로 각각의 상태를 표시하고 싶다면..