구매내역 색상 및 필터 정렬 기능 추가, 삭제시 데이터 숨김처리하게
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user