<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>strikethrough text</title><link>https://communities.bentley.com/products/microstation/f/microstation-forum/110944/strikethrough-text</link><description>In Word Processor dialog there is underlined text. 
 
 Can I get STRIKETHROUGH also?</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/719566?ContentTypeID=1</link><pubDate>Sat, 02 Jul 2022 11:12:28 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:6b122ddd-ded9-4006-9e33-d1761147eb1d</guid><dc:creator>Lorys</dc:creator><description>[quote userid="954208" url="~/products/microstation/f/microstation-forum/110944/strikethrough-text/719087"]This is a very roundabout way to achieve a simple result. [/quote]
&lt;p&gt;very clever Jim,&amp;nbsp; personally&amp;nbsp; for not to true scale dimensions I would built a custom terminator to have a zig zag ... but as I only do one or two of these dims I just drop the dimension and make a manual zig zag&amp;nbsp; with insert vertex tool ... I also have a company vba that draws parallel break lines on top of elements.. but you have to drop dims first other elements its fine&amp;nbsp; but the OP did ask for strike thru so well done..&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/719205?ContentTypeID=1</link><pubDate>Thu, 30 Jun 2022 06:58:25 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:5b50bb8b-d1a4-4f08-8e2e-7ab8ed88ca76</guid><dc:creator>mlm</dc:creator><description>&lt;p&gt;Thanks Todd.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I wonder. As far as I know the Text Editor is based on microsoft tech(?) Every other program managing text that I used has this setting.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;(but then there are other things that I quarrel with here: like color settings for fonts (you were able to set them on the fly as far as I remember in earlier versions) or that you cannot set text width other than via the text style dialog,...)&lt;/p&gt;
&lt;p&gt;JMs VBA is brilliant- but as he said&amp;nbsp; it is again another workaround for something that should be a no brainer&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/719093?ContentTypeID=1</link><pubDate>Wed, 29 Jun 2022 15:19:26 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:5af03e41-90a8-435e-beb7-1ee2be8573f8</guid><dc:creator>MaryB</dc:creator><description>&lt;p&gt;Fantastic!!! Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/719087?ContentTypeID=1</link><pubDate>Wed, 29 Jun 2022 14:54:27 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:6cc350c6-915d-461e-a252-96e8fc305240</guid><dc:creator>JM</dc:creator><description>&lt;p&gt;I was looking for&amp;nbsp;how to make Strikethrough text, and I found one way to do it (using V8i SS10 version 08.11.09.931). This post is currently top Google result so I will share here.&lt;/p&gt;
&lt;p&gt;With VBA it is possible to use Underline to create &amp;quot;strikethrough&amp;quot; by setting&amp;nbsp;UnderlineOffset to a negative value that is half the text Height.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;Sub StrikeThroughText()
  &amp;#39;process selected elements
  Dim EE As ElementEnumerator
  Set EE = ActiveModelReference.GetSelectedElements
  Dim ScanArray() As element
  ScanArray = EE.BuildArrayFromContents
  
  Dim ScanElement As Variant
  For Each ScanElement In ScanArray
    Dim eeCurrent As element
    Set eeCurrent = ScanElement
      
    &amp;#39;STRIKETHROUGH text using underline
    If eeCurrent.IsTextElement Then
      With eeCurrent.AsTextElement
        .TextStyle.IsUnderlined = True
        .TextStyle.UnderlineOffset = .TextStyle.Height * -0.5
      End With
      eeCurrent.Rewrite
    ElseIf eeCurrent.IsTextNodeElement Then
      Dim TNEE As ElementEnumerator
      Set TNEE = eeCurrent.AsTextNodeElement.GetSubElements
      Do While TNEE.MoveNext
        Dim oText As TextElement
        Set oText = TNEE.Current
        With oText
          .TextStyle.IsUnderlined = True
          .TextStyle.UnderlineOffset = .TextStyle.Height * -0.5
          oText.Rewrite
        End With
      Loop
    End If
  Next
End Sub&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Once you have used VBA to create text with &amp;quot;strikethrough&amp;quot; then you can use Match Text Atributes and create a new text style as shown below.&lt;/p&gt;
&lt;p&gt;NOTE! it is not possible to set the Underline Offset to a negative value manually. I have only been able to do this using VBA first.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/320x240/__key/communityserver-discussions-components-files/273/2134.strike1.PNG" /&gt;&lt;/p&gt;
&lt;p&gt;This is a very roundabout way to achieve a simple result. A built in Word Processor feature would be better.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/338378?ContentTypeID=1</link><pubDate>Mon, 14 Sep 2015 13:37:46 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:04b1aed8-d0d9-446d-b8fb-0d4b755d02d1</guid><dc:creator>Todd Cassell</dc:creator><description>&lt;p&gt;Hi Thomas,&lt;br /&gt; I filed enhancement request #290195 for this ability to be added.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/338239?ContentTypeID=1</link><pubDate>Sat, 12 Sep 2015 00:32:13 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:c6d65263-348d-4170-a0a8-3aae9c3c345e</guid><dc:creator>Lorys</dc:creator><description>&lt;p&gt;The only way I know to get strike through text is to go online and &amp;nbsp;find a strike through TrueType font and then add that &amp;nbsp;to your machine.. this is however &amp;nbsp;adds another &amp;nbsp;problem &amp;nbsp;only &amp;nbsp;you can see that &amp;nbsp;font as its not standard to cad or windows so it needs to be &amp;nbsp;networked and if you issue cad files to clients you have to remember &amp;nbsp;to give them that &amp;nbsp;font .. so what have always done to prevent this is to always use the &amp;nbsp;packager and add in fonts and line styles as well as references .. that way &amp;nbsp;its fool proof .. after all a few years later another drafter &amp;nbsp;will not know the &amp;nbsp;history of the cad work or &amp;nbsp;department &amp;nbsp;use of non standard &amp;nbsp;fonts and custom linestyles.&lt;/p&gt;
&lt;p&gt;I&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/338218?ContentTypeID=1</link><pubDate>Fri, 11 Sep 2015 20:11:14 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:8e96c26f-4ac2-4372-b22e-2e9dc65fe467</guid><dc:creator>Thomas Voghera</dc:creator><description>Yes please do.&lt;br /&gt;
&lt;br /&gt;
My thought was to use it  in a dimension on an existing building element indicating it is not modeled/drawn an actual size.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: strikethrough text</title><link>https://communities.bentley.com/thread/338166?ContentTypeID=1</link><pubDate>Fri, 11 Sep 2015 14:13:26 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:b77a0f83-cbde-4347-82c1-f686bfea4715</guid><dc:creator>Todd Cassell</dc:creator><description>Hi Thomas,&lt;br /&gt;
From what I can see, this option does not seem to be available at this time. I checked in V8i as well as Connect. I would imagine this could be files as an enhancement, if it hasn&amp;#39;t been already.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>