Duang_tt 发表于 2023-4-20 11:31:24

单元格如何判断是不是图片类型

单元格设置为图片类型过后,后续使用时要用单元格类型做判断,如何判断单元格是不是图片类型呢


ImageCellType imageType = new ImageCellType();
                        imageType.Style = FarPoint.Win.RenderStyle.StretchAndScale;
                        cell.CellType = imageType;

Richard.Ma 发表于 2023-4-20 11:31:25

应该通过if(cell.CellType is ImageCellType)就能判断吧

Duang_tt 发表于 2023-4-20 15:10:33

Richard.Ma 发表于 2023-4-20 11:33
应该通过if(cell.CellType is ImageCellType)就能判断吧

感谢版主,已解决

Richard.Ma 发表于 2023-4-20 18:11:58

不客气
页: [1]
查看完整版本: 单元格如何判断是不是图片类型