<?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 Re: RMS Error through code in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758551#M20119</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN style="font-family:Lucida Console;"&gt;&lt;BR /&gt;&lt;BR /&gt;Hi Sean,&lt;BR /&gt;&lt;BR /&gt;Your solution worked like a charm..i spent around 2 hrs searching for a solution..thank you..below is my working code..&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Set pAdjust.CurrentTransformationMethod = pAdjust.TransformationMethod(0)
 

Dim pTransformMethod As ITransformationMethod
Set pTransformMethod = pAdjust.CurrentTransformationMethod

Dim pTransformMethodRMS As ITransformationMethodRMSError
Set pTransformMethodRMS = pTransformMethod
Dim rmsError As Double
pTransformMethodRMS.GetRMSError rmsError

MsgBox rmsError&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 08:09:52 GMT</pubDate>
    <dc:creator>VinayanMP</dc:creator>
    <dc:date>2021-12-12T08:09:52Z</dc:date>
    <item>
      <title>RMS Error through code</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758549#M20117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN style="font-family:Lucida Console;"&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I want to do a small spatial adjustment automation..it will be an affine transformation. I have generated the displacement links.&lt;BR /&gt;&lt;BR /&gt;To set the transformation to affine i used the below code..&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;Dim pAdjust As esriEditorExt.IAdjustment Set pAdjust.CurrentTransformationMethod = pAdjust.TransformationMethod(0)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;I plan to adjust the selected features by using the below method..&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;ThisDocument.CommandBars.Find("esriEditorExt.TransformCommand").Execute&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have two questions here&lt;BR /&gt;&lt;BR /&gt;how do i know the existing RMS error for the existing links programmatically?&lt;BR /&gt;how do i set the features to be adjusted as selected features?&lt;BR /&gt;&lt;BR /&gt;Any help is greatly appreciated..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 11:00:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758549#M20117</guid>
      <dc:creator>VinayanMP</dc:creator>
      <dc:date>2012-02-14T11:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: RMS Error through code</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758550#M20118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Vinayan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can get the RMS errors through the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/ITransformationMethodRMSError_Interface/0021000000sv000000/" rel="nofollow" target="_blank"&gt;ITransformationMethodRMSError Interface&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can set 'adjust selected features' via the &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/componenthelp/index.html#/IAdjustLayers_Interface/00210000001n000000/" rel="nofollow" target="_blank"&gt;IAdjustLayers Interface&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2012 14:06:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758550#M20118</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2012-02-14T14:06:49Z</dc:date>
    </item>
    <item>
      <title>Re: RMS Error through code</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758551#M20119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN style="font-family:Lucida Console;"&gt;&lt;BR /&gt;&lt;BR /&gt;Hi Sean,&lt;BR /&gt;&lt;BR /&gt;Your solution worked like a charm..i spent around 2 hrs searching for a solution..thank you..below is my working code..&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;Set pAdjust.CurrentTransformationMethod = pAdjust.TransformationMethod(0)
 

Dim pTransformMethod As ITransformationMethod
Set pTransformMethod = pAdjust.CurrentTransformationMethod

Dim pTransformMethodRMS As ITransformationMethodRMSError
Set pTransformMethodRMS = pTransformMethod
Dim rmsError As Double
pTransformMethodRMS.GetRMSError rmsError

MsgBox rmsError&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:09:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/rms-error-through-code/m-p/758551#M20119</guid>
      <dc:creator>VinayanMP</dc:creator>
      <dc:date>2021-12-12T08:09:52Z</dc:date>
    </item>
  </channel>
</rss>

