/// <summary> /// Sets the spectral value at a specified index. /// </summary> /// <param name="rowIndex">The zero-based row index of the value.</param> /// <param name="columnIndex">The zero-based column index of the value.</param> /// <param name="bandIndex">The zero-based band index of the value.</param> /// <param name="spectralValue">The spectral value.</param> protected override void ApplySetValue(Int32 rowIndex, Int32 columnIndex, Int32 bandIndex, UInt32 spectralValue) { _service.WriteValue(rowIndex, columnIndex, bandIndex, spectralValue); }