vb.net - Set objMapWindow = gobjGeoApp.ActiveWindow -
The above command is written in VB, where objMapWindow is the object, how to write the same command in C #.
Try these
dynamic objMapWindow = gobjGeoApp.ActiveWindow; Object objMapWindow = gobjGeoApp.ActiveWindow;
Comments
Post a Comment