Public Function GetFieldDescriptions() As List(Of FieldDescription)
public List<FieldDescription> GetFieldDescriptions()
Return Value
List{FieldDescription}
Public Function GetFieldDescriptions() As List(Of FieldDescription)
public List<FieldDescription> GetFieldDescriptions()
| Exception | Description |
|---|---|
| ArcGIS.Core.CalledOnWrongThreadException | This method or property must be called within the lambda passed to QueuedTask.Run. |
{
// Note: call within QueuedTask.Run()
{
//Get only the readonly fields
var readOnlyFields = featSceneLayer.GetFieldDescriptions()
.Where(fdesc => fdesc.IsReadOnly);
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)