This revision is from 05-26-04
This commit is contained in:
parent
85732a1707
commit
80bec761e0
3 changed files with 17 additions and 1 deletions
|
@ -5,7 +5,7 @@ Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} ItalicOptions
|
||||||
ClientLeft = 30
|
ClientLeft = 30
|
||||||
ClientTop = 480
|
ClientTop = 480
|
||||||
ClientWidth = 7125
|
ClientWidth = 7125
|
||||||
OleObjectBlob = "ItalicOptions043004.frx":0000
|
OleObjectBlob = "ItalicOptions052604.frx":0000
|
||||||
StartUpPosition = 1 'CenterOwner
|
StartUpPosition = 1 'CenterOwner
|
||||||
End
|
End
|
||||||
Attribute VB_Name = "ItalicOptions"
|
Attribute VB_Name = "ItalicOptions"
|
||||||
|
|
Binary file not shown.
|
@ -412,6 +412,14 @@ Function iterateRange(ByVal rng)
|
||||||
|
|
||||||
ElseIf char1.Style = "Footnote Reference,fr" Then
|
ElseIf char1.Style = "Footnote Reference,fr" Then
|
||||||
outStr = outStr & "<note>" & iterateNote(char1.Footnotes(1).Range) & "</note>"
|
outStr = outStr & "<note>" & iterateNote(char1.Footnotes(1).Range) & "</note>"
|
||||||
|
|
||||||
|
ElseIf char1.Style = "Hyperlink,hl" Then
|
||||||
|
textToDis = char1.Hyperlinks(1).TextToDisplay
|
||||||
|
outStr = Left(outStr, Len(outStr) - (14 + Len(textToDis)))
|
||||||
|
outStr = outStr & "<a href=""" & char1.Hyperlinks(1).Address & """>" _
|
||||||
|
& textToDis & "</a>"
|
||||||
|
n = n + Len(textToDis)
|
||||||
|
|
||||||
Else:
|
Else:
|
||||||
If char1.Style = currStyle Then
|
If char1.Style = currStyle Then
|
||||||
outStr = outStr & char1.Text
|
outStr = outStr & char1.Text
|
||||||
|
@ -453,6 +461,13 @@ Function iterateNote(ByVal rng As Range)
|
||||||
End If
|
End If
|
||||||
outStr = outStr & char1.Text
|
outStr = outStr & char1.Text
|
||||||
|
|
||||||
|
ElseIf char1.Style = "Hyperlink,hl" Then
|
||||||
|
textToDis = char1.Hyperlinks(1).TextToDisplay
|
||||||
|
outStr = Left(outStr, Len(outStr) - 1)
|
||||||
|
outStr = outStr & "<a href=""" & char1.Hyperlinks(1).Address & """>" _
|
||||||
|
& textToDis & "</a>"
|
||||||
|
ct = ct + Len(textToDis) - 2
|
||||||
|
|
||||||
Else:
|
Else:
|
||||||
If char1.Style = currStyle Then
|
If char1.Style = currStyle Then
|
||||||
outStr = outStr & char1.Text
|
outStr = outStr & char1.Text
|
||||||
|
@ -861,6 +876,7 @@ Function isCharStyle(ByVal rng As Range) As Boolean
|
||||||
|
|
||||||
If StyleName = "Emphasis Weak,ew" Or _
|
If StyleName = "Emphasis Weak,ew" Or _
|
||||||
StyleName = "Annotations,an" Or _
|
StyleName = "Annotations,an" Or _
|
||||||
|
StyleName = "Hyperlink,hl" Or _
|
||||||
StyleName = "Lang Tibetan,tib" Or _
|
StyleName = "Lang Tibetan,tib" Or _
|
||||||
StyleName = "Lang Sanskrit,san" Or _
|
StyleName = "Lang Sanskrit,san" Or _
|
||||||
StyleName = "Lang Chinese,chi" Or _
|
StyleName = "Lang Chinese,chi" Or _
|
||||||
|
|
Loading…
Reference in a new issue