ArcGIS Desktop

  • Dokumentation
  • Support

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS Desktop

Ein vollständiges professionelles GIS

ArcGIS Enterprise

GIS in Ihrem Unternehmen

ArcGIS for Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

ArcMap

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Erweiterungen

FieldInfo

  • Zusammenfassung
  • Syntax
  • Eigenschaften
  • Methodenübersicht
  • Methoden
  • Codebeispiel

Zusammenfassung

Provides field info methods and properties for layer and table views.

Syntax

 FieldInfo  ()

Eigenschaften

EigenschaftErläuterungDatentyp
count
(Nur lesen)

The field count.

Integer

Methodenübersicht

MethodeErläuterung
addField (field_name, new_field_name, visible, split_rule)

Adds a field info entry

exportToString ()

Exports the object to its string representation.

findFieldByName (field_name)

Finds the field index by field name

findFieldByNewName (field_name)

Finds the field index by new field name.

getFieldName (index)

Gets the field name from the table by index position.

getNewName (index)

Gets the new field name from the table by index position.

getSplitRule (index)

Gets the split rule from the table by index position.

getVisible (index)

Gets the visible flag from the table by index position.

loadFromString (string)

Restore the object using its string representation. The exportToString method can be used to create a string representation.

removeField (index)

Removes the field info entry from a table.

setFieldName (index, field_name)

Sets the field name into the table.

setNewName (index, new_field_name)

Sets the new field name into the table.

setSplitRule (index, rule)

Sets the split rule into the table.

setVisible (index, visible)

Set the visible flag of a field on the table.

Methoden

addField (field_name, new_field_name, visible, split_rule)
ParameterErläuterungDatentyp
field_name

The field name from the input feature class or table.

String
new_field_name

Sets the field name for the new layer or table view.

String
visible

Sets whether the field is visible or hidden.

  • VISIBLE —Field is visible.
  • HIDDEN —Field is hidden.
String
split_rule

Sets the behavior of an attribute's values when a feature is split.

  • NONE —The attributes of the two resulting features take on a copy of the original value.
  • RATIO —The attributes of resulting features are a ratio of the original feature's value. The ratio is based on the division of the original geometry. If the geometry is divided equally, each new feature's attribute gets one-half of the value of the original object's attribute.
String
exportToString ()

Rückgabewert

DatentypErläuterung
String

The string representation of the object.

findFieldByName (field_name)
ParameterErläuterungDatentyp
field_name

The field name used to find its index position

String

Rückgabewert

DatentypErläuterung
Integer

The index position

findFieldByNewName (field_name)
ParameterErläuterungDatentyp
field_name

The new field name used to find its index position.

String

Rückgabewert

DatentypErläuterung
Integer

The index position.

getFieldName (index)
ParameterErläuterungDatentyp
index

The index position.

Integer

Rückgabewert

DatentypErläuterung
String

The field name.

getNewName (index)
ParameterErläuterungDatentyp
index

The index position.

Integer

Rückgabewert

DatentypErläuterung
String

The new field name.

getSplitRule (index)
ParameterErläuterungDatentyp
index

The index position.

String

Rückgabewert

DatentypErläuterung
String

The split rule.

  • NONE —The attributes of the two resulting features take on a copy of the original value.
  • RATIO —The attributes of resulting features are a ratio of the original feature's value. The ratio is based on the division of the original geometry. If the geometry is divided equally, each new feature's attribute gets one-half of the value of the original object's attribute.
getVisible (index)
ParameterErläuterungDatentyp
index

The index position.

String

Rückgabewert

DatentypErläuterung
String

The visible flag.

  • VISIBLE —Field is visible.
  • HIDDEN —Field is hidden.
loadFromString (string)
ParameterErläuterungDatentyp
string

The string representation of the object.

String
removeField (index)
ParameterErläuterungDatentyp
index

The index position of the field info object.

Integer
setFieldName (index, field_name)
ParameterErläuterungDatentyp
index

The index position.

Integer
field_name

The field name to set into the table.

String
setNewName (index, new_field_name)
ParameterErläuterungDatentyp
index

The index position.

None
new_field_name

The new field name to set into the table.

String
setSplitRule (index, rule)
ParameterErläuterungDatentyp
index

The index position.

Integer
rule

The split rule to set into the table.

  • NONE —The attributes of the two resulting features take on a copy of the original value.
  • RATIO —The attributes of resulting features are a ratio of the original feature's value. The ratio is based on the division of the original geometry. If the geometry is divided equally, each new feature's attribute gets one-half of the value of the original object's attribute.
String
setVisible (index, visible)
ParameterErläuterungDatentyp
index

The index position.

Integer
visible

The visible policy to set into the table.

  • VISIBLE —Field is visible.
  • HIDDEN —Field is hidden.
String

Codebeispiel

FieldInfo example

Display FieldInfo properties for a feature layer.

import arcpy

feature_class = "c:/Data/wells.shp"
layer = "temp_layer"
arcpy.MakeFeatureLayer_management(feature_class, layer)

# Create a describe object
desc = arcpy.Describe(layer)

# If a feature layer, continue
if desc.dataType == "FeatureLayer":

    # Create a fieldinfo object
    field_info = desc.fieldInfo

    # Use the count property to iterate through all the fields
    for index in range(0, field_info.count):
        # Print fieldinfo properties
        print("Field Name: {0}".format(field_info.getFieldName(index)))
        print("\tNew Name:   {0}".format(field_info.getNewName(index)))
        print("\tSplit Rule: {0}".format(field_info.getSplitRule(index)))
        print("\tVisible:    {0}".format(field_info.getVisible(index)))

Verwandte Themen

  • TableView properties
  • Layer properties

ArcGIS Desktop

  • Startseite
  • Dokumentation
  • Support

ArcGIS Plattform

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Über Esri

  • Über uns
  • Karriere
  • Insider-Blog
  • User Conference
  • Developer Summit
Esri
Wir sind an Ihrer Meinung interessiert.
© Copyright 2016 Environmental Systems Research Institute, Inc. | Datenschutz | Rechtliches