Dzwebs.Net

撰写电脑技术杂文十余年

vba判断word文字颜色是否为蓝色的两种代码

Admin | 2010-4-11 11:10:43 | 被阅次数 | 11105

温馨提示!

如果未能解决您的问题,请点击搜索;登陆可复制文章,点击登陆

  ①第一种代码

  On Error GoTo ErrHandle
  Set myRange = ActiveDocument.Range(Selection.Start, ActiveDocument.Content.End)
  For Each iChar In myRange.Characters
   Selection.MoveRight Unit:=wdCharacter, Count:=1
   If Selection.Font.ColorIndex = 2 Then MsgBox iChar
   Next
  Exit Sub
  ErrHandle:
  MsgBox "Error number: " + Str$(Err) + Chr(13) + Error$(Err), 48, m_Title

  ②第二种代码

  Dim n As Integer, Info As String
  With Selection.Find
  .Parent.HomeKey wdStory
  .ClearFormatting
  .Font.Color = wdColorBlue
  Do While .Execute
   n = n + 1
   Info = Info & n & vbTab & .Parent & vbCrLf  '提取找到的文本
   .Parent.Delete  '删除找到的文本(蓝色字体)
  Loop
  End With
  If Info = "" Then MsgBox "未找到指定颜色字体" Else Documents.Add.Content = Info


该杂文来自: Word杂文

上一篇:改变word文字选中状态之黑底白字

下一篇:Word两页合并成为一页的方法

网站备案号:

网站备案号:滇ICP备11001339号-7

版权属性:

Copyright 2007-2021-forever Inc. all Rights Reserved.

联系方式:

Email:dzwebs@126.com QQ:83539231 访问统计