In the 2.5 version of Pro does CreateRow have some slightly different behavior? In my code that worked with previous versions, CreateRow(rowBuffer) i don't recall triggered the RowChangedEventArgs. It makes sense that it does, but in my old code when creating the row from the row buffer this was never triggered. Should I want to skip the RowChangeEvent, I think I will need to again track something on that ROW, however I can't get an ObjectID from the Row buffer? Do I have to use the Handle?
<SPAN class="comment token">//This line now triggers Row Create event, where as it didn't before? It think?</SPAN>
<SPAN class="keyword token">using</SPAN> <SPAN class="punctuation token">(</SPAN>Row NewFieldRow <SPAN class="operator token">=</SPAN> layerTable<SPAN class="punctuation token">.</SPAN><SPAN class="token function">CreateRow</SPAN><SPAN class="punctuation token">(</SPAN>rowBuffer<SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="punctuation token">{</SPAN>
NewFieldGlobalID <SPAN class="operator token">=</SPAN> NewFieldRow<SPAN class="punctuation token">.</SPAN><SPAN class="token function">GetRowTableValue</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="string token">"GlobalId"</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
NewCurrentFieldObjectID <SPAN class="operator token">=</SPAN> NewFieldRow<SPAN class="punctuation token">.</SPAN><SPAN class="token function">GetObjectID</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN><SPAN class="punctuation token">;</SPAN>
<SPAN class="punctuation token">}</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>