C# (1) 썸네일형 리스트형 C# FpSpread 특정 셀 클릭 이벤트(cell click event) 다음과 같은 FarPoint Spread에서 SMS column에 있는 버튼을 클릭했을 때 그 사람에게 SMS를 전송할 수 있게 하는 기능을 추가하려고 했다. 특정 셀을 클릭했을 때만 이벤트를 발생시켜야 하는 것인데, Spread의 CellClick 이벤트객체 e를 잘 사용해서 특정 셀 클릭을 판단할 수 있다. private void SpreadMain_CellClick(object sender, FarPoint.Win.Spread.CellClickEventArgs e) { if (e.Column == 8) { string team = SpreadMain.ActiveSheet.GetText(e.Row, 1); string name = SpreadMain.ActiveSheet.GetText(e.Row, 3.. 이전 1 다음