苏州三木软件科技有限公司

 找回密码
 立即注册
搜索
热搜: 活动
查看: 3718|回复: 2

请给个使用 DevExpress 的 Word Processing Document API

[复制链接]

35

主题

53

帖子

371

积分

中级会员

Rank: 3Rank: 3

积分
371
发表于 2024-12-23 10:24:46 | 显示全部楼层 |阅读模式
请给个使用 DevExpress 的 Word Processing Document API 获取 Word 表格单元格中第1个单元格的值的代码
回复

使用道具 举报

100

主题

405

帖子

2549

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
2549
QQ
发表于 2024-12-23 11:38:10 | 显示全部楼层
  1. DevExpress.XtraRichEdit.API.Native.Document document=null;
  2. Table table = document.Tables[0];
  3. //方式一
  4. TableCell firstCell =table.Rows[0].FirstCell;
  5. //方式二
  6. firstCell=table[0,0];
  7. //方式三
  8. firstCell=table.Rows[0].Cells[0];
  9. document.InsertSingleLineText(firstCell.Range.Start,"要插入文本");
  10. document.InsertText(firstCell.Range.Start,"要插入文本方案二");
复制代码
回复

使用道具 举报

35

主题

53

帖子

371

积分

中级会员

Rank: 3Rank: 3

积分
371
 楼主| 发表于 2024-12-23 14:20:27 | 显示全部楼层
要得到第一个单元格里面的文本,我找到方法了:
string str=document.GetText(table.Rows[0].Cells[0].Range).Replace("\r\n", "").Replace("\n", "").Replace(" ", "");
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|苏州三木软件科技有限公司 ( 苏ICP备2022038390号 )

苏公网安备 32058502010732号

GMT+8, 2025-1-18 11:42 , Processed in 0.060931 second(s), 22 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表