ArcMapAddinVisibility.ViewModels.RLOSViewModel.SetFieldValues C# (CSharp) Метод

SetFieldValues() приватный статический Метод

Set the values for the associated fields
private static SetFieldValues ( double finalObserverOffset, double finalSurfaceOffset, double finalMinDistance, double finalMaxDistance, double finalLeftHorizontalFOV, double finalRightHorizontalFOV, double finalBottomVerticalFOV, double finalTopVerticalFOV, IFeature ipFeature ) : void
finalObserverOffset double Observer offset
finalSurfaceOffset double Surface offset
finalMinDistance double Minimum distance
finalMaxDistance double Maximum distance
finalLeftHorizontalFOV double Left horizontal field of view
finalRightHorizontalFOV double Right horizontal field of view
finalBottomVerticalFOV double Bottom vertical field of view
finalTopVerticalFOV double Top vertical field of view
ipFeature IFeature IFeature
Результат void
        private static void SetFieldValues(double finalObserverOffset, double finalSurfaceOffset, double finalMinDistance, double finalMaxDistance,
            double finalLeftHorizontalFOV, double finalRightHorizontalFOV, double finalBottomVerticalFOV, double finalTopVerticalFOV, IFeature ipFeature)
        {
            // Observer Offset
            SetDatabaseFieldValue(ipFeature, "OFFSETA", finalObserverOffset);
            // Surface Offset
            SetDatabaseFieldValue(ipFeature, "OFFSETB", finalSurfaceOffset);
            // Horizontal FOV
            SetDatabaseFieldValue(ipFeature, "AZIMUTH1", finalLeftHorizontalFOV);
            SetDatabaseFieldValue(ipFeature, "AZIMUTH2", finalRightHorizontalFOV);
            // Distance
            SetDatabaseFieldValue(ipFeature, "RADIUS1", finalMinDistance);
            SetDatabaseFieldValue(ipFeature, "RADIUS2", finalMaxDistance);
            // Vertical FOV
            SetDatabaseFieldValue(ipFeature, "VERT1", finalBottomVerticalFOV);
            SetDatabaseFieldValue(ipFeature, "VERT1", finalTopVerticalFOV);
        }