CustomFunction.NDVICustomFunctionArguments.NDVICustomFunctionArguments C# (CSharp) Method

NDVICustomFunctionArguments() public method

public NDVICustomFunctionArguments ( ) : System
return System
        public NDVICustomFunctionArguments()
        {
            myName = "NDVI Custom Function Arguments";
            myDescription = "Arguments object for the NDVI Custom Function";

            // Set default values
            myProperties = new PropertySet();
            myProperties.SetProperty("Raster", null);
            myProperties.SetProperty("BandIndices", "1 2"); // Default value for band indexes: first two bands of image.

            myUID = new UID();
            myUID.Value = "{CB684500-0A15-46C5-B1C1-8062A1629F66}";
        }