Select to view content in your preferred language

Access Cadastral Fabric from ArcGIS Engine

2836
0
02-29-2016 07:01 AM
MichaelSnook
Occasional Contributor III

Hi All,

Through arcobjects I can access a parcel fabric through a layer file fine when using Desktop...however, using the same methods, I can't seem to access it from an ArcGIS Engine app.  The layer cast to ICadastralFabricLayer seems to work but the <layer>.CadastralFabric always returns null.  Does anyone know if this is possible with Engine?

Thanks,

Mike

if (Layer is ICadastralFabricLayer)
            {
                pCFLayer = (ICadastralFabricLayer)Layer;
                Fabric = pCFLayer.CadastralFabric;  // <---ALWAYS NULL
                return Fabric;               
            }
0 Kudos
0 Replies