C#,Delphi,Oracle,MSSQL 개발자블로그
[Farpoint Spread]소수점 표시 해제 본문
//NumberCellType..
NumberCellType num = new NumberCellType();
//소수점 위치 체크를 위한 변수
int Place = 3;
//소수점 위치
num.DecimalPlaces = Place;
//소수점 구분자
num.DecimalSeparator = ".";
//소수점을 표시여부
num.FixedPoint = true;
//천단위 구분자
num.Separator = ",";
//천단위 구분자 표시 여부
num.ShowSeparator = true;
//최대값
num.MaximumValue = 9999999999;
//최소값
num.MinimumValue = -9999999999;
//원하는 부분(row,column,cell)에 할당
fpSpread1.Sheets[0].Columns[0].CellType = num;
Spread에서 소수점 표시 제거는 FixedPoint = false 해주면 된다.
'Programming > Farpoint Spread(C#)' 카테고리의 다른 글
[Farpoint Spread] Removing Row or Column (0) | 2017.08.10 |
---|---|
[Farpoint Spread] 스프레드에 픽처박스의 이미지 넣기. (0) | 2017.06.14 |
[Farpoint Spread] 셀 안의 데이터 길이만큼 스프레드의 너비 조절. (0) | 2017.06.14 |
[Farpoint Spread] 코드로 스프레드 디자이너 속성 사용하기 팁. (0) | 2017.06.08 |
[Farpoint Spread] SPREAD에서 CHECKBOX 선택이 되지 않는 문제. (0) | 2017.04.14 |
Comments