<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic vb.net arcobjects create transparent buffer in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58252#M1600</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to check when a create a buffer on arcmap, how can I make the buffer transparent? I am using vb.net arcobjects. &lt;/P&gt;&lt;P&gt;Any advice will be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Sep 2014 02:14:20 GMT</pubDate>
    <dc:creator>LiYao</dc:creator>
    <dc:date>2014-09-08T02:14:20Z</dc:date>
    <item>
      <title>vb.net arcobjects create transparent buffer</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58252#M1600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to check when a create a buffer on arcmap, how can I make the buffer transparent? I am using vb.net arcobjects. &lt;/P&gt;&lt;P&gt;Any advice will be appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2014 02:14:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58252#M1600</guid>
      <dc:creator>LiYao</dc:creator>
      <dc:date>2014-09-08T02:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: vb.net arcobjects create transparent buffer</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58253#M1601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Li,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming your buffer exists in a layer and is not just some polygon then you can use the interface &lt;EM&gt;ILayerEffects&lt;/EM&gt; to alter the transparency. Only layers support transparency, so if you were intending to create a polygon buffer and display it as a graphic then that will not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Duncan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2014 09:36:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58253#M1601</guid>
      <dc:creator>DuncanHornby</dc:creator>
      <dc:date>2014-09-09T09:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: vb.net arcobjects create transparent buffer</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58254#M1602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Duncan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thanks for the reply. I have already create a transparent buffer (for polygon), but now I am unable to remove the colour of the boundary of the buffer.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2014 07:49:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58254#M1602</guid>
      <dc:creator>LiYao</dc:creator>
      <dc:date>2014-09-10T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: vb.net arcobjects create transparent buffer</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58255#M1603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually you can get something that is pretty close to transparency on the ISymbol interface.&amp;nbsp; So let's say you have created a&amp;nbsp; graphic element (a IFillShapeElement could be a polygon or a rectangle as shown below).&amp;nbsp; You will then find the&amp;nbsp; the&amp;nbsp; ISymbol:&lt;SPAN style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;ROP2 and by setting it equal to esriROPMaskPen, it makes for a nice semi-transparent fill. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim fillShapeEl As IFillShapeElement&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set fillShapeEl = rect&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim sfs As ISimpleFillSymbol&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set sfs = New SimpleFillSymbol&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim rgb As IRgbColor&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set rgb = New RgbColor&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rgb.Red = 255&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'rgb.Transparency = 50&lt;STRONG&gt; 'This doesn't behave as expected...still 100% opaque&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim sym As ISymbol&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set sym = sfs&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;sym.ROP2 = esriROPMaskPen 'This is the magic line!!&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sfs.Color = rgb&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fillShapeEl.Symbol = sfs&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gc.AddElement rect, 0&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&lt;/P&gt;&lt;P style="font-family: Verdana, 'Verdana Ref', Geneva, Tahoma, sans-serif;"&gt;&lt;IMG alt="SemiTransparent.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/9642_SemiTransparent.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 17:37:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58255#M1603</guid>
      <dc:creator>RiverTaig1</dc:creator>
      <dc:date>2014-09-11T17:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: vb.net arcobjects create transparent buffer</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58256#M1604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Duncan &amp;amp; Taig,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have already resolved the issue, thanks a lot for the attention and help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2014 07:52:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/vb-net-arcobjects-create-transparent-buffer/m-p/58256#M1604</guid>
      <dc:creator>LiYao</dc:creator>
      <dc:date>2014-09-12T07:52:45Z</dc:date>
    </item>
  </channel>
</rss>

