<?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 Making point move to right or left using ArcObjects? in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/making-point-move-to-right-or-left-using/m-p/232718#M6060</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE style="color: #242729; background-color: rgba(248, 248, 248, 0.6); border: 0px; font-size: 13px;"&gt;&lt;TBODY style="border: 0px; font-size: 13px;"&gt;&lt;TR style="border: 0px; font-size: 13px;"&gt;&lt;TD class="" style="border: 0px; font-size: 13px; padding: 0px 15px 0px 0px;"&gt;&lt;DIV class="" style="border: 0px; font-size: 13px;"&gt;&lt;A style="color: #358daa; border: 0px; text-indent: -9999em; font-size: 1px; margin: 0px auto 10px;" title="This question does not show any research effort; it is unclear or not useful"&gt;downvote&lt;/A&gt;&lt;A href="http://gis.stackexchange.com/questions/226913/making-point-move-to-right-or-left-using-arcobjects" style="color: #358daa; border: 0px; text-indent: -9999em; font-size: 1px; margin: 0px auto 2px;" title="Click to mark as favorite question (click again to undo)"&gt;favori&lt;/A&gt;&lt;DIV class="" style="border: 0px; font-size: 13px;"&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD class="" style="border: 0px; font-size: 13px;"&gt;&lt;DIV style="border: 0px; font-size: 13px;"&gt;&lt;DIV class="" style="border: 0px; margin: 0px 0px 5px;"&gt;&lt;P style="border: 0px; margin: 0px 0px 1em;"&gt;I want to make a point and the point can move to the right or left. To make the point I can handle it , but I can already confused in the movement of the point.&lt;/P&gt;&lt;P style="border: 0px; margin: 0px 0px 1em;"&gt;this code to draw point&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;public void DrawPoint(ESRI.ArcGIS.Carto.IActiveView activeView, System.Int32 x, System.Int32 y)&lt;BR /&gt; {&lt;BR /&gt; if (activeView == null)&lt;BR /&gt; {&lt;BR /&gt; return;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;ESRI.ArcGIS.Display.IScreenDisplay screenDisplay = activeView.ScreenDisplay;&lt;BR /&gt; screenDisplay.StartDrawing(screenDisplay.hDC, (System.Int16)ESRI.ArcGIS.Display.esriScreenCache.esriNoScreenCache); &lt;BR /&gt; ESRI.ArcGIS.Display.ISimpleMarkerSymbol simpleMarkerSymbol = new ESRI.ArcGIS.Display.SimpleMarkerSymbol();&lt;BR /&gt; ESRI.ArcGIS.Display.ISymbol symbol = simpleMarkerSymbol as ESRI.ArcGIS.Display.ISymbol; &lt;BR /&gt; screenDisplay.SetSymbol(symbol);&lt;BR /&gt; ESRI.ArcGIS.Display.IDisplayTransformation displayTransformation = screenDisplay.DisplayTransformation;&lt;BR /&gt; ESRI.ArcGIS.Geometry.IPoint point = displayTransformation.ToMapPoint(x, y);&lt;BR /&gt; screenDisplay.DrawPoint(point); &lt;BR /&gt; screenDisplay.FinishDrawing();&lt;BR /&gt; }&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Feb 2017 04:05:57 GMT</pubDate>
    <dc:creator>fajarachmadi</dc:creator>
    <dc:date>2017-02-03T04:05:57Z</dc:date>
    <item>
      <title>Making point move to right or left using ArcObjects?</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/making-point-move-to-right-or-left-using/m-p/232718#M6060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE style="color: #242729; background-color: rgba(248, 248, 248, 0.6); border: 0px; font-size: 13px;"&gt;&lt;TBODY style="border: 0px; font-size: 13px;"&gt;&lt;TR style="border: 0px; font-size: 13px;"&gt;&lt;TD class="" style="border: 0px; font-size: 13px; padding: 0px 15px 0px 0px;"&gt;&lt;DIV class="" style="border: 0px; font-size: 13px;"&gt;&lt;A style="color: #358daa; border: 0px; text-indent: -9999em; font-size: 1px; margin: 0px auto 10px;" title="This question does not show any research effort; it is unclear or not useful"&gt;downvote&lt;/A&gt;&lt;A href="http://gis.stackexchange.com/questions/226913/making-point-move-to-right-or-left-using-arcobjects" style="color: #358daa; border: 0px; text-indent: -9999em; font-size: 1px; margin: 0px auto 2px;" title="Click to mark as favorite question (click again to undo)"&gt;favori&lt;/A&gt;&lt;DIV class="" style="border: 0px; font-size: 13px;"&gt; &lt;/DIV&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD class="" style="border: 0px; font-size: 13px;"&gt;&lt;DIV style="border: 0px; font-size: 13px;"&gt;&lt;DIV class="" style="border: 0px; margin: 0px 0px 5px;"&gt;&lt;P style="border: 0px; margin: 0px 0px 1em;"&gt;I want to make a point and the point can move to the right or left. To make the point I can handle it , but I can already confused in the movement of the point.&lt;/P&gt;&lt;P style="border: 0px; margin: 0px 0px 1em;"&gt;this code to draw point&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;public void DrawPoint(ESRI.ArcGIS.Carto.IActiveView activeView, System.Int32 x, System.Int32 y)&lt;BR /&gt; {&lt;BR /&gt; if (activeView == null)&lt;BR /&gt; {&lt;BR /&gt; return;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;ESRI.ArcGIS.Display.IScreenDisplay screenDisplay = activeView.ScreenDisplay;&lt;BR /&gt; screenDisplay.StartDrawing(screenDisplay.hDC, (System.Int16)ESRI.ArcGIS.Display.esriScreenCache.esriNoScreenCache); &lt;BR /&gt; ESRI.ArcGIS.Display.ISimpleMarkerSymbol simpleMarkerSymbol = new ESRI.ArcGIS.Display.SimpleMarkerSymbol();&lt;BR /&gt; ESRI.ArcGIS.Display.ISymbol symbol = simpleMarkerSymbol as ESRI.ArcGIS.Display.ISymbol; &lt;BR /&gt; screenDisplay.SetSymbol(symbol);&lt;BR /&gt; ESRI.ArcGIS.Display.IDisplayTransformation displayTransformation = screenDisplay.DisplayTransformation;&lt;BR /&gt; ESRI.ArcGIS.Geometry.IPoint point = displayTransformation.ToMapPoint(x, y);&lt;BR /&gt; screenDisplay.DrawPoint(point); &lt;BR /&gt; screenDisplay.FinishDrawing();&lt;BR /&gt; }&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 04:05:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/making-point-move-to-right-or-left-using/m-p/232718#M6060</guid>
      <dc:creator>fajarachmadi</dc:creator>
      <dc:date>2017-02-03T04:05:57Z</dc:date>
    </item>
  </channel>
</rss>

