구매내역 색상 및 필터 정렬 기능 추가, 삭제시 데이터 숨김처리하게

This commit is contained in:
chikyun.kim
2018-12-13 09:29:48 +09:00
parent 1c72ca913a
commit 9cf98cd0d4
21 changed files with 728 additions and 662 deletions

View File

@@ -9,7 +9,15 @@ namespace FCOMMON
{
public static void FPColSizeAuto(FarPoint.Win.Spread.FpSpread fp)
{
fp.ActiveSheet.DataAutoSizeColumns = true;
// fp.ActiveSheet.DataAutoSizeColumns = true;
foreach (FarPoint.Win.Spread.Column col in fp.ActiveSheet.Columns)
{
col.Width = 0;
col.Width = col.GetPreferredWidth();
}
for (int i = 0; i < fp.ActiveSheet.Rows.Count; i++)
fp.ActiveSheet.SetRowHeight(i, 25);
}