//Get the layer you want FeatureLayer featureLayer = MobileApplication.Current.Project.FindFeatureLayer("Clients"); //Get the data table and then read it FeatureDataTable fDataTable = featureLayer.GetDataTable(); using(FeatureDataReader fDataReader = featureLayer.GetDataReader()) { int globalIdIndex = fDataReader.GlobalIdColumnIndex; fDataReader.GetValue(globalIdIndex); // here you will get the value of the Global ID, I have not tried it but it may work. }
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.