### ES3Spreadsheet.ColumnCount Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Gets the total number of columns in the spreadsheet. ```APIDOC ## ES3Spreadsheet.ColumnCount ### Description Gets the total number of columns in the spreadsheet. ### Method ```csharp public int ColumnCount() ``` ### Response #### Success Response (int) - **int** - The number of columns in the spreadsheet. ``` -------------------------------- ### ES3Spreadsheet.RowCount Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Gets the total number of rows in the spreadsheet. ```APIDOC ## ES3Spreadsheet.RowCount ### Description Gets the total number of rows in the spreadsheet. ### Method ```csharp public int RowCount() ``` ### Response #### Success Response (int) - **int** - The number of rows in the spreadsheet. ``` -------------------------------- ### ES3Spreadsheet.GetColumnLength Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Gets the number of rows in a specific column of the spreadsheet. ```APIDOC ## ES3Spreadsheet.GetColumnLength ### Description Gets the number of rows in a specific column of the spreadsheet. ### Method ```csharp public int GetColumnLength(int column) ``` ### Parameters #### Path Parameters - **column** (int) - Required - The index of the column. ### Response #### Success Response (int) - **int** - The number of rows in the specified column. ``` -------------------------------- ### ES3Spreadsheet.GetRowLength Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Gets the number of columns in a specific row of the spreadsheet. ```APIDOC ## ES3Spreadsheet.GetRowLength ### Description Gets the number of columns in a specific row of the spreadsheet. ### Method ```csharp public int GetRowLength(int row) ``` ### Parameters #### Path Parameters - **row** (int) - Required - The index of the row. ### Response #### Success Response (int) - **int** - The number of columns in the specified row. ``` -------------------------------- ### ES3Spreadsheet.GetCell Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Gets the value of a specific cell in a spreadsheet. ```APIDOC ## ES3Spreadsheet.GetCell ### Description Gets the value of a specific cell in a spreadsheet. ### Method ```csharp public T GetCell(int column, int row) ``` ### Parameters #### Path Parameters - **column** (int) - Required - The column index of the cell. - **row** (int) - Required - The row index of the cell. ### Response #### Success Response (T) - **T** - The value of the cell, cast to the specified type. ``` -------------------------------- ### ES3Settings Constructor Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Initializes new settings for Easy Save 3. This is typically used for advanced configuration. ```APIDOC ## ES3Settings Constructor ### Description Initializes new settings for Easy Save 3. This is typically used for advanced configuration. ### Method ```csharp public ES3Settings() ``` ``` -------------------------------- ### ES3.CreateBackup Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Creates a backup of all saved data. ```APIDOC ## ES3.CreateBackup ### Description Creates a backup of all saved data. ### Method ```csharp public static string CreateBackup() ``` ### Response #### Success Response (string) - **string** - The path to the created backup file. ``` -------------------------------- ### ES3Cloud Constructor Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Initializes a new instance of the ES3Cloud class for cloud storage operations. ```APIDOC ## ES3Cloud Constructor ### Description Initializes a new instance of the ES3Cloud class for cloud storage operations. ### Method ```csharp public ES3Cloud() ``` ``` -------------------------------- ### ES3.LoadAudio Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads audio data from a file. Returns an AudioClip object. ```APIDOC ## ES3.LoadAudio ### Description Loads audio data from a file. Returns an AudioClip object. ### Method ```csharp public static AudioClip LoadAudio(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the audio file to load. - **decrypt** (bool) - Optional - Whether to decrypt the audio data. Defaults to false. ### Response #### Success Response (AudioClip) - **AudioClip** - The loaded audio data as an AudioClip object. ``` -------------------------------- ### ES3Reader.Create Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Creates a new ES3Reader instance to read data from a file. ```APIDOC ## ES3Reader.Create ### Description Creates a new ES3Reader instance to read data from a file. ### Method ```csharp public static ES3Reader Create(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file to read from. - **decrypt** (bool) - Optional - Whether to decrypt the data. Defaults to false. ### Response #### Success Response (ES3Reader) - **ES3Reader** - A new instance of ES3Reader. ``` -------------------------------- ### ES3Writer.Create Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Creates a new ES3Writer instance to write data to a file. ```APIDOC ## ES3Writer.Create ### Description Creates a new ES3Writer instance to write data to a file. ### Method ```csharp public static ES3Writer Create(string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file to write to. - **encrypt** (bool) - Optional - Whether to encrypt the data. Defaults to false. ### Response #### Success Response (ES3Writer) - **ES3Writer** - A new instance of ES3Writer. ``` -------------------------------- ### ES3Cloud.DownloadFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Downloads a file from cloud storage to the local device. ```APIDOC ## ES3Cloud.DownloadFile ### Description Downloads a file from cloud storage to the local device. ### Method ```csharp public void DownloadFile(string cloudPath, string localPath) ``` ### Parameters #### Path Parameters - **cloudPath** (string) - Required - The path to the file in cloud storage. - **localPath** (string) - Required - The path where the file will be saved locally. ``` -------------------------------- ### ES3.RestoreBackup Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Restores saved data from a backup file. ```APIDOC ## ES3.RestoreBackup ### Description Restores saved data from a backup file. ### Method ```csharp public static void RestoreBackup(string backupPath) ``` ### Parameters #### Path Parameters - **backupPath** (string) - Required - The path to the backup file to restore from. ``` -------------------------------- ### ES3.GetFiles Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Retrieves a list of all files in a specified directory. ```APIDOC ## ES3.GetFiles ### Description Retrieves a list of all files in a specified directory. ### Method ```csharp public static string[] GetFiles(string directoryPath) ``` ### Parameters #### Path Parameters - **directoryPath** (string) - Required - The path of the directory to list files from. ### Response #### Success Response (string[]) - **string[]** - An array of strings, where each string is the path to a file. ``` -------------------------------- ### ES3Cloud.UploadFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Uploads a local file to cloud storage. ```APIDOC ## ES3Cloud.UploadFile ### Description Uploads a local file to cloud storage. ### Method ```csharp public void UploadFile(string localPath, string cloudPath) ``` ### Parameters #### Path Parameters - **localPath** (string) - Required - The path to the local file to upload. - **cloudPath** (string) - Required - The desired path for the file in cloud storage. ``` -------------------------------- ### ES3.CopyFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Copies a file from a source path to a destination path. ```APIDOC ## ES3.CopyFile ### Description Copies a file from a source path to a destination path. ### Method ```csharp public static bool CopyFile(string sourcePath, string destinationPath) ``` ### Parameters #### Path Parameters - **sourcePath** (string) - Required - The path of the file to copy. - **destinationPath** (string) - Required - The path where the file will be copied to. ### Response #### Success Response (bool) - **bool** - True if the file was copied successfully, false otherwise. ``` -------------------------------- ### ES3Spreadsheet Constructor Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Creates a new instance of the ES3Spreadsheet class. ```APIDOC ## ES3Spreadsheet Constructor ### Description Creates a new instance of the ES3Spreadsheet class. ### Method ```csharp public ES3Spreadsheet() ``` ``` -------------------------------- ### ES3Cloud.DownloadFilenames Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Downloads a list of filenames currently stored in cloud storage. ```APIDOC ## ES3Cloud.DownloadFilenames ### Description Downloads a list of filenames currently stored in cloud storage. ### Method ```csharp public string[] DownloadFilenames() ``` ### Response #### Success Response (string[]) - **string[]** - An array of strings, where each string is a filename in cloud storage. ``` -------------------------------- ### ES3Spreadsheet.Load Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads spreadsheet data from a file. ```APIDOC ## ES3Spreadsheet.Load ### Description Loads spreadsheet data from a file. ### Method ```csharp public void Load(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file from which to load the spreadsheet. - **decrypt** (bool) - Optional - Whether to decrypt the spreadsheet data. Defaults to false. ``` -------------------------------- ### ES3.KeyExists Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Checks if a specific key exists in the Easy Save 3 storage. ```APIDOC ## ES3.KeyExists ### Description Checks if a specific key exists in the Easy Save 3 storage. ### Method ```csharp public static bool KeyExists(string key) ``` ### Parameters #### Path Parameters - **key** (string) - Required - The key to check for. ### Response #### Success Response (bool) - **bool** - True if the key exists, false otherwise. ``` -------------------------------- ### ES3.GetKeys Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Retrieves a list of all keys currently stored by Easy Save 3. ```APIDOC ## ES3.GetKeys ### Description Retrieves a list of all keys currently stored by Easy Save 3. ### Method ```csharp public static string[] GetKeys() ``` ### Response #### Success Response (string[]) - **string[]** - An array of strings, where each string is a key. ``` -------------------------------- ### ES3.AppendRaw Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Appends raw byte data to an existing file. Useful for streaming or large file operations. ```APIDOC ## ES3.AppendRaw ### Description Appends raw byte data to an existing file. Useful for streaming or large file operations. ### Method ```csharp public static void AppendRaw(byte[] data, string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **data** (byte[]) - Required - The raw byte data to append. - **path** (string) - Required - The path to the file to append data to. - **encrypt** (bool) - Optional - Whether to encrypt the data. Defaults to false. ``` -------------------------------- ### ES3.GetDirectories Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Retrieves a list of all directories within a specified directory. ```APIDOC ## ES3.GetDirectories ### Description Retrieves a list of all directories within a specified directory. ### Method ```csharp public static string[] GetDirectories(string directoryPath) ``` ### Parameters #### Path Parameters - **directoryPath** (string) - Required - The path of the directory to list subdirectories from. ### Response #### Success Response (string[]) - **string[]** - An array of strings, where each string is the path to a subdirectory. ``` -------------------------------- ### ES3Cloud.Sync Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Synchronizes local data with cloud storage. Uploads local changes and downloads remote changes. ```APIDOC ## ES3Cloud.Sync ### Description Synchronizes local data with cloud storage. Uploads local changes and downloads remote changes. ### Method ```csharp public void Sync() ``` ``` -------------------------------- ### ES3Cloud.SearchFilenames Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Searches for filenames in cloud storage based on a query. ```APIDOC ## ES3Cloud.SearchFilenames ### Description Searches for filenames in cloud storage based on a query. ### Method ```csharp public string[] SearchFilenames(string query) ``` ### Parameters #### Path Parameters - **query** (string) - Required - The search query to find filenames. ### Response #### Success Response (string[]) - **string[]** - An array of strings, where each string is a filename matching the query. ``` -------------------------------- ### ES3.LoadInto Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads data from a file directly into an existing object. This is useful for deserializing into complex types. ```APIDOC ## ES3.LoadInto ### Description Loads data from a file directly into an existing object. This is useful for deserializing into complex types. ### Method ```csharp public static void LoadInto(object instance, string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **instance** (object) - Required - The object to load the data into. - **path** (string) - Required - The path to the file from which to load data. - **decrypt** (bool) - Optional - Whether to decrypt the data. Defaults to false. ``` -------------------------------- ### ES3.LoadImage Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads an image from a file. Returns a Texture2D object. ```APIDOC ## ES3.LoadImage ### Description Loads an image from a file. Returns a Texture2D object. ### Method ```csharp public static Texture2D LoadImage(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the image file to load. - **decrypt** (bool) - Optional - Whether to decrypt the image data. Defaults to false. ### Response #### Success Response (Texture2D) - **Texture2D** - The loaded image as a Texture2D object. ``` -------------------------------- ### ES3.Load Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads data from a file. This method is used to retrieve previously saved data. ```APIDOC ## ES3.Load ### Description Loads data from a file. This method is used to retrieve previously saved data. ### Method ```csharp public static T Load(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file from which to load data. - **decrypt** (bool) - Optional - Whether to decrypt the data. Defaults to false. ### Response #### Success Response (T) - **T** - The loaded data of the specified type. ``` -------------------------------- ### ES3Cloud.RenameFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Renames a file in cloud storage. ```APIDOC ## ES3Cloud.RenameFile ### Description Renames a file in cloud storage. ### Method ```csharp public void RenameFile(string oldCloudPath, string newCloudPath) ``` ### Parameters #### Path Parameters - **oldCloudPath** (string) - Required - The current path of the file in cloud storage. - **newCloudPath** (string) - Required - The new path for the file in cloud storage. ``` -------------------------------- ### ES3Cloud.DownloadTimestamp Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Downloads the timestamp of a file from cloud storage. ```APIDOC ## ES3Cloud.DownloadTimestamp ### Description Downloads the timestamp of a file from cloud storage. ### Method ```csharp public long DownloadTimestamp(string cloudPath) ``` ### Parameters #### Path Parameters - **cloudPath** (string) - Required - The path to the file in cloud storage. ### Response #### Success Response (long) - **long** - The timestamp of the file as a long integer. ``` -------------------------------- ### ES3.CacheFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Caches a file for faster access. The file is stored in memory. ```APIDOC ## ES3.CacheFile ### Description Caches a file for faster access. The file is stored in memory. ### Method ```csharp public static void CacheFile(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file to cache. - **decrypt** (bool) - Optional - Whether to decrypt the file before caching. Defaults to false. ``` -------------------------------- ### ES3.DirectoryExists Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Checks if a directory exists at the specified path. ```APIDOC ## ES3.DirectoryExists ### Description Checks if a directory exists at the specified path. ### Method ```csharp public static bool DirectoryExists(string directoryPath) ``` ### Parameters #### Path Parameters - **directoryPath** (string) - Required - The path of the directory to check. ### Response #### Success Response (bool) - **bool** - True if the directory exists, false otherwise. ``` -------------------------------- ### ES3.LoadRawBytes Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads the raw byte data from a file. This is useful for non-serializable data like images or audio. ```APIDOC ## ES3.LoadRawBytes ### Description Loads the raw byte data from a file. This is useful for non-serializable data like images or audio. ### Method ```csharp public static byte[] LoadRawBytes(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file from which to load data. - **decrypt** (bool) - Optional - Whether to decrypt the data. Defaults to false. ### Response #### Success Response (byte[]) - **byte[]** - The raw byte data loaded from the file. ``` -------------------------------- ### ES3.FileExists Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Checks if a file exists at the specified path. ```APIDOC ## ES3.FileExists ### Description Checks if a file exists at the specified path. ### Method ```csharp public static bool FileExists(string path) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path of the file to check. ### Response #### Success Response (bool) - **bool** - True if the file exists, false otherwise. ``` -------------------------------- ### ES3.RenameFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Renames a file from one path to another. ```APIDOC ## ES3.RenameFile ### Description Renames a file from one path to another. ### Method ```csharp public static bool RenameFile(string oldPath, string newPath) ``` ### Parameters #### Path Parameters - **oldPath** (string) - Required - The current path of the file. - **newPath** (string) - Required - The new path for the file. ### Response #### Success Response (bool) - **bool** - True if the file was renamed successfully, false otherwise. ``` -------------------------------- ### ES3.LoadRawString Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Loads raw string data from a file. Useful for text-based data. ```APIDOC ## ES3.LoadRawString ### Description Loads raw string data from a file. Useful for text-based data. ### Method ```csharp public static string LoadRawString(string path, bool decrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file from which to load the string. - **decrypt** (bool) - Optional - Whether to decrypt the string data. Defaults to false. ### Response #### Success Response (string) - **string** - The raw string data loaded from the file. ``` -------------------------------- ### ES3.SaveRaw Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Saves raw byte data to a file. Use this for saving binary data. ```APIDOC ## ES3.SaveRaw ### Description Saves raw byte data to a file. Use this for saving binary data. ### Method ```csharp public static void SaveRaw(byte[] data, string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **data** (byte[]) - Required - The raw byte data to save. - **path** (string) - Required - The path to the file where the data will be saved. - **encrypt** (bool) - Optional - Whether to encrypt the data. Defaults to false. ``` -------------------------------- ### ES3.Save Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Saves data to a file. This is a general-purpose save method that can handle various data types. ```APIDOC ## ES3.Save ### Description Saves data to a file. This is a general-purpose save method that can handle various data types. ### Method ```csharp public static void Save(object data, string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **data** (object) - Required - The data to save. - **path** (string) - Required - The path to the file where the data will be saved. - **encrypt** (bool) - Optional - Whether to encrypt the data. Defaults to false. ``` -------------------------------- ### ES3Spreadsheet.Save Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Saves the current spreadsheet data to a file. ```APIDOC ## ES3Spreadsheet.Save ### Description Saves the current spreadsheet data to a file. ### Method ```csharp public void Save(string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file where the spreadsheet will be saved. - **encrypt** (bool) - Optional - Whether to encrypt the spreadsheet data. Defaults to false. ``` -------------------------------- ### ES3Cloud.DeleteFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Deletes a file from cloud storage. ```APIDOC ## ES3Cloud.DeleteFile ### Description Deletes a file from cloud storage. ### Method ```csharp public void DeleteFile(string cloudPath) ``` ### Parameters #### Path Parameters - **cloudPath** (string) - Required - The path to the file in cloud storage to delete. ``` -------------------------------- ### ES3.GetTimestamp Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Retrieves the timestamp of a locally saved file. ```APIDOC ## ES3.GetTimestamp ### Description Retrieves the timestamp of a locally saved file. ### Method ```csharp public static long GetTimestamp(string path) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path to the file. ### Response #### Success Response (long) - **long** - The timestamp of the file as a long integer. ``` -------------------------------- ### ES3.DeleteFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Deletes a file from the specified path. ```APIDOC ## ES3.DeleteFile ### Description Deletes a file from the specified path. ### Method ```csharp public static bool DeleteFile(string path) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path of the file to delete. ### Response #### Success Response (bool) - **bool** - True if the file was deleted successfully, false otherwise. ``` -------------------------------- ### ES3.DeleteKey Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Deletes a specific key (and its associated data) from the Easy Save 3 storage. ```APIDOC ## ES3.DeleteKey ### Description Deletes a specific key (and its associated data) from the Easy Save 3 storage. ### Method ```csharp public static bool DeleteKey(string key) ``` ### Parameters #### Path Parameters - **key** (string) - Required - The key to delete. ### Response #### Success Response (bool) - **bool** - True if the key was deleted successfully, false otherwise. ``` -------------------------------- ### ES3.StoreCachedFile Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Stores a file that has been cached in memory to persistent storage. ```APIDOC ## ES3.StoreCachedFile ### Description Stores a file that has been cached in memory to persistent storage. ### Method ```csharp public static void StoreCachedFile(string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **path** (string) - Required - The path of the cached file to store. - **encrypt** (bool) - Optional - Whether to encrypt the file when storing. Defaults to false. ``` -------------------------------- ### ES3Reader.Read Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Reads a property from the current ES3Reader stream. Used for custom deserialization. ```APIDOC ## ES3Reader.Read ### Description Reads a property from the current ES3Reader stream. Used for custom deserialization. ### Method ```csharp public T Read() ``` ### Response #### Success Response (T) - **T** - The value of the property, deserialized to the specified type. ``` -------------------------------- ### ES3.SaveImage Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Saves an image to a file. Supports various image formats. ```APIDOC ## ES3.SaveImage ### Description Saves an image to a file. Supports various image formats. ### Method ```csharp public static void SaveImage(Texture2D image, string path, bool encrypt = false) ``` ### Parameters #### Path Parameters - **image** (Texture2D) - Required - The Texture2D object to save. - **path** (string) - Required - The path to the file where the image will be saved. - **encrypt** (bool) - Optional - Whether to encrypt the image data. Defaults to false. ``` -------------------------------- ### ES3Writer.WriteProperty Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Writes a property to the current ES3Writer stream. Used for custom serialization. ```APIDOC ## ES3Writer.WriteProperty ### Description Writes a property to the current ES3Writer stream. Used for custom serialization. ### Method ```csharp public void WriteProperty(string key, object value) ``` ### Parameters #### Path Parameters - **key** (string) - Required - The name of the property. - **value** (object) - Required - The value of the property. ``` -------------------------------- ### ES3Cloud.AddPOSTField Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Adds a custom POST field to be included in cloud upload requests. Used for advanced integrations. ```APIDOC ## ES3Cloud.AddPOSTField ### Description Adds a custom POST field to be included in cloud upload requests. Used for advanced integrations. ### Method ```csharp public void AddPOSTField(string key, string value) ``` ### Parameters #### Path Parameters - **key** (string) - Required - The key for the POST field. - **value** (string) - Required - The value for the POST field. ``` -------------------------------- ### ES3Spreadsheet.SetCell Source: https://easysaveasset.com/product/easy-save-3/es3-api/es3-methods Sets the value of a specific cell in a spreadsheet. ```APIDOC ## ES3Spreadsheet.SetCell ### Description Sets the value of a specific cell in a spreadsheet. ### Method ```csharp public void SetCell(int column, int row, object value) ``` ### Parameters #### Path Parameters - **column** (int) - Required - The column index of the cell. - **row** (int) - Required - The row index of the cell. - **value** (object) - Required - The value to set in the cell. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.