Group layers in runtime geodatabase

3800
2
Jump to solution
12-04-2014 04:20 PM
JoshuaBirappagari
New Contributor

Hi,

I have an mxd file with 2 Group layers, and each of these have layers below them. I did a file -> share as -> runtime content and created a new .geodatabase.

I am using arcgis runtime sdk for .net, how do I access the names of these group layers in c#.

Thanks.

0 Kudos
1 Solution

Accepted Solutions
AnttiKajanus1
Occasional Contributor III

Hey,

GroupLayer information is not stored in the geodatabase. Geodatabase stores tables (not layers) so if you want to group FeatureLayers (using Table from the geodabase) you need to create GroupLayers manually in code and set the correct layers under it.

View solution in original post

0 Kudos
2 Replies
AnttiKajanus1
Occasional Contributor III

Hey,

GroupLayer information is not stored in the geodatabase. Geodatabase stores tables (not layers) so if you want to group FeatureLayers (using Table from the geodabase) you need to create GroupLayers manually in code and set the correct layers under it.

0 Kudos
JoshuaBirappagari
New Contributor

Thank you.

0 Kudos