找回密码
 立即注册

QQ登录

只需一步,快速开始

menghuanyunxia

高级会员

111

主题

396

帖子

1075

积分

高级会员

积分
1075

活字格认证微信认证勋章元老葡萄

Farpoint 复制粘贴单元格的时候,能否在设置拷贝单元格的时候,不拷贝单元格中的tag信息

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2013-8-30 10:46:00
沙发
回复 1楼menghuanyunxia的帖子

请问您指的是通过 Ctrl + V 快捷键粘帖吗?如果是,可以使用以下方法定制快捷键行为,以下代码定制了只复制数据,不包括任何格式信息:

  1. FarPoint.Win.Spread.InputMap inputmap1;// Assign the InputMap object to the existing map.
  2.             inputmap1 = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenAncestorOfFocused);
  3.             inputmap1.Put(new FarPoint.Win.Spread.Keystroke(Keys.V, Keys.Control), FarPoint.Win.Spread.SpreadActions.ClipboardPasteValues);
  4.             FarPoint.Win.Spread.InputMap inputmap2;
  5.             inputmap2 = fpSpread1.GetInputMap(FarPoint.Win.Spread.InputMapMode.WhenFocused);
  6.             inputmap2.Put(new FarPoint.Win.Spread.Keystroke(Keys.V, Keys.Control), FarPoint.Win.Spread.SpreadActions.ClipboardPasteValues);
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部