SetFeatureClass =============== .. currentmodule:: globalmapper .. py:function:: SetFeatureClass (GM_LayerHandle_t32 aLayer, GM_FeatureClassType_t8 aFeatureClassType, uint32 aFeatureIndex, FeatureClass_t16 aFeatureClass) -> GM_Error_t32 Sets the feature class for the given area, line, or point feature in the given layer. :param GM_LayerHandle_t32 aLayer: Layer the feature is in :param GM_FeatureClassType_t8 aFeatureClassType: Type of feature class (area, point, line) :param uint32 aFeatureIndex: Index of feature in layer :param FeatureClass_t16 aFeatureClass: New feature class to assign to feature :returns: Error Code :rtype: GM_Error_t32 Example ------- The following is an example of SetFeatureClass.:: gm.SetFeatureClass(layer_arr[0], gm.GM_FeatureClass_Line, i, gm.LFC_RAILROAD_OTHER) For more context refer to :doc:`the tutorial page on full example scripts<../sampleCode/DemoMisc>`.