C#

Farpoint 리스트 박스

봉주니 2015. 10. 19. 13:05
FarPoint.Win.Spread.CellType.ListBoxCellType listcell = new FarPoint.Win.Spread.CellType.ListBoxCellType();
listcell.ImageList = ImageList1;
listcell.ItemData = new string[] { "One", "Two", "Three"};
listcell.Items = new string[] {"One","Two","Three"};
listcell.ItemHeight = 40;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = listcell;


[참조] http://helpcentral.componentone.com/NetHelp/SpreadNet7/WF/spwin-setlistboxcell.html

반응형