<?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>FeatureMgr in VB.NET</title><link>https://communities.bentley.com/products/geospatial/desktop/f/bentley-map-forum/54626/featuremgr-in-vb-net</link><description>I connect the application using the following code. 
 Dim m_App As MicroStationDGN.ApplicationObjectConnector = GetObject(, &amp;quot;MicroStationDGN.ApplicationObjectConnector&amp;quot;) &amp;#39; Dim msDGNApp As MicroStationDGN.Application = m_App.Application Dim m_DF As MicroStationDGN</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/140133?ContentTypeID=1</link><pubDate>Thu, 12 Aug 2010 10:09:35 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:f248c849-8181-432c-8c39-b50afe0f3ee2</guid><dc:creator>lijumathewv</dc:creator><description>&lt;p&gt;Thanks Jeff. This helped me a to put my step ahead.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/140066?ContentTypeID=1</link><pubDate>Wed, 11 Aug 2010 20:47:49 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:10f36a55-bfa3-4e4f-bf73-6c7b977a8709</guid><dc:creator>Jeff Bielefeld</dc:creator><description>&lt;p&gt;...you will need to use the &lt;span style="font-family:courier new,courier;"&gt;CreateObjectInMicroStation &lt;/span&gt;method on the MicroStation application object&amp;nbsp;to ensure that your XFT objects are created in the MicroStation&amp;#39;s address space. The&amp;nbsp;&lt;span style="font-family:courier new,courier;"&gt;CreateObjectInMicroStation &lt;/span&gt;method is useful for an out-of-proc program that needs to create objects from a COM server that must run in MicroStation&amp;#39;s address space.&lt;/p&gt;
&lt;p&gt;Following is a simple&amp;nbsp;VB.NET code example which uses &lt;span style="font-family:courier new,courier;"&gt;CreateObjectInMicroStation&amp;nbsp;&lt;/span&gt;to create XFT objects as previously described.&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;Imports DGN = Bentley.Interop.MicroStationDGN&lt;br /&gt;Imports XFT = Bentley.Interop.Xft&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;Public Class Form1&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_xftCmdMgr As XFT.CmdMgr&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_xftFeatureMgr As XFT.FeatureMgr&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_xftFeatureEnumerator As XFT.FeatureEnumerator&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_xftDialogMgr As XFT.DialogMgr&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_xftPropMgr As XFT.PropMgr&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_MSApp As DGN.Application&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_ActiveFile As DGN.DesignFile&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend m_CurrentModel As DGN.ModelReference&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; test()&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Friend Sub xft_initialize(ByVal msapp As DGN.Application)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_MSApp = msapp&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_xftFeatureMgr = CType(m_MSApp.CreateObjectInMicroStation(&amp;quot;xft.FeatureMgr&amp;quot;), XFT.FeatureMgr)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_xftFeatureEnumerator = CType(m_MSApp.CreateObjectInMicroStation(&amp;quot;xft.FeatureEnumerator&amp;quot;), XFT.FeatureEnumerator)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_xftCmdMgr = CType(m_MSApp.CreateObjectInMicroStation(&amp;quot;xft.CmdMgr&amp;quot;), XFT.CmdMgr)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_xftPropMgr = CType(m_MSApp.CreateObjectInMicroStation(&amp;quot;xft.PropMgr&amp;quot;), XFT.PropMgr)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_xftDialogMgr = CType(m_MSApp.CreateObjectInMicroStation(&amp;quot;xft.DialogMgr&amp;quot;), XFT.DialogMgr)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sub test()&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oMSApp As Bentley.Interop.MicroStationDGN.Application&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oMSAppConnector As Bentley.Interop.MicroStationDGN.ApplicationObjectConnector&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&lt;span style="color:#339966;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39; Create our MicroStation application object.&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oMSAppConnector = GetObject(, &amp;quot;MicroStationDGN.ApplicationObjectConnector&amp;quot;)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oMSApp = oMSAppConnector.Application&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color:#339966;"&gt;&amp;#39; Initialize our global XFT objects in the MicroStation process.&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xft_initialize(oMSApp)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color:#339966;"&gt;&amp;#39; Display the currently active design file.&lt;br /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox(oMSApp.ActiveDesignFile.Name)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color:#339966;"&gt;&amp;#39; Create an XFT feature enumerator.&lt;/span&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_xftFeatureEnumerator = m_xftFeatureMgr.GetFeaturesInDgnList(oMSApp.ActiveDesignFile)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oFeature As XFT.feature&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim sPropertyList As String&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oProperty As XFT.Property&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color:#339966;"&gt;&amp;#39; Loop through our feature enumerator and create string that contains the property names and values.&lt;br /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Do While m_xftFeatureEnumerator.MoveNext&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oFeature = m_xftFeatureEnumerator.Current&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim oProperties As XFT.PropertyEnumerator = oFeature.GetPropertyEnumerator&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sPropertyList = &amp;quot;Property Values: &amp;quot;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Do While oProperties.MoveNext&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oProperty = oProperties.Current&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sPropertyList += &amp;quot; &amp;quot; + oProperty.Name + &amp;quot; = &amp;quot; + oProperty.value&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Loop&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;span style="color:#339966;"&gt;&amp;#39; Display the property names and values.&lt;br /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MessageBox.Show(sPropertyList)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Loop&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family:courier new,courier;"&gt;End Class&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/140037?ContentTypeID=1</link><pubDate>Wed, 11 Aug 2010 17:24:56 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:eee264bb-aafd-41f3-87b5-127cb1eb7b4f</guid><dc:creator>lijumathewv</dc:creator><description>&lt;p&gt;This is what I&amp;#39;m doing in Vb.NET&lt;/p&gt;
&lt;p&gt;Public Class Form1&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;Dim MSApp As Application&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Dim app As MicroStationDGN.ApplicationObjectConnector&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Try&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;app = GetObject(, &amp;quot;MicroStationDGN.ApplicationObjectConnector&amp;quot;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MSApp = app.Application&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox(&amp;quot;Connected&amp;quot;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Catch ex As Exception&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox(&amp;quot;Open Power Map&amp;quot; &amp;amp; vbCrLf &amp;amp; ex.Message)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Try&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim el As Element&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;With MSApp.ActiveModelReference&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;el = .GetElementByID64(txt.Text)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If el IsNot Nothing Then&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim Mgr As New XFT.FeatureMgr&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;#39; &lt;strong&gt;&lt;span style="background-color:#ff0000;"&gt;&lt;span style="text-decoration:underline;"&gt;&lt;span style="color:#ff0000;"&gt;&lt;span style="background-color:#ffffff;"&gt;&lt;span style="font-size:medium;"&gt;Error Happens here&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim ft As feature&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ft = Mgr.CreateFeature(el)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Else&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MsgBox(&amp;quot;Element Not Found&amp;quot;)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End With&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt;End Class&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/140036?ContentTypeID=1</link><pubDate>Wed, 11 Aug 2010 17:20:15 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:7a1ff575-44f1-4e9e-9f34-cf4b01fc64a0</guid><dc:creator>lijumathewv</dc:creator><description>&lt;ol&gt;
&lt;li&gt;The Bentley Map is loaded and I&amp;#39;ve referenced the file Interop.xft.dll&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;But I get the following error on the line &lt;/p&gt;
&lt;p&gt;Dim s as new xft.FeatureMgr&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Retrieving the COM class factory for component failed due to the following error: 8007007e.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/140030?ContentTypeID=1</link><pubDate>Wed, 11 Aug 2010 16:58:44 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:d8c3f962-d843-4d67-97dd-bd0266c9e58a</guid><dc:creator>Jerry Walter - Bentley</dc:creator><description>&lt;p&gt;You need to have Bentley Map loaded and to reference the assemblies in the /Mpa/Bin/assemblies folder to your project.. The feature manager is in the Bentley.Interop.XFT assembly.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/140022?ContentTypeID=1</link><pubDate>Wed, 11 Aug 2010 15:47:34 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:9c3574e8-57e4-4a54-8f99-ea906afa09b8</guid><dc:creator>lijumathewv</dc:creator><description>&lt;p&gt;Once Attaching the Reference Bentley GeoGraphics XFT Object Library I can do the following in VBA&lt;/p&gt;
&lt;p&gt; &amp;nbsp;Dim s As New xft.FeatureMgr&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Dim en As xft.FeatureEnumerator&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Dim el As Element&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Set el = ActiveModelReference.GetElementByID(DLongFromLong(25715))&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Dim ft As feature&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Set ft = s.CreateFeature(el)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Dim pr As Property&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;While en1.MoveNext&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Set pr = en1.Current&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Debug.Print pr.Name &amp;amp; &amp;quot;:&amp;quot; &amp;amp; pr.Value &amp;amp; vbCrLf&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Wend&lt;/p&gt;
&lt;p&gt;I Get all the properties of that Particular Element. But this is not possible from VB.NET&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/127969?ContentTypeID=1</link><pubDate>Fri, 14 May 2010 14:06:27 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:6bfd6399-4636-41ac-bd05-e82ea8b60a5d</guid><dc:creator>Jon Summers</dc:creator><description>&lt;p&gt;Please provide evidence (e.g. a screenshot) that shows FeatureMgr in MicroStation V8i.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/127966?ContentTypeID=1</link><pubDate>Fri, 14 May 2010 14:02:13 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:0cfc1927-b474-4017-97d1-85e20eeb302f</guid><dc:creator>DanPaul</dc:creator><description>&lt;p&gt;Which assembly? Which namespace? Provide more info about, since I personaly have no idea where that class could be... &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/127948?ContentTypeID=1</link><pubDate>Fri, 14 May 2010 11:38:05 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:b6538a58-e795-4be1-9e69-9581cd9e0e34</guid><dc:creator>lijumathewv</dc:creator><description>&lt;p&gt;You will find this featureMgr class in V8i.&lt;/p&gt;
&lt;p&gt;I want this FeatureMgr class in VB.NET not in VBA&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>Re: FeatureMgr in VB.NET</title><link>https://communities.bentley.com/thread/127792?ContentTypeID=1</link><pubDate>Thu, 13 May 2010 17:53:19 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:7027f362-7d34-4fc3-a125-4888ce74428e</guid><dc:creator>Jon Summers</dc:creator><description>&lt;p&gt;
What do you mean by the &amp;#39;FeatureMgr Class&amp;#39;?
I don&amp;#39;t see that in MicroStation VBA.
&lt;/p&gt;

&lt;p&gt;
Regards, Jon Summers
&lt;br /&gt;
&lt;a href="http://www.la-solutions.co.uk"&gt;LA Solutions&lt;/a&gt;
&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>