WebExtensionProperty.Value

WebExtensionProperty.Value property

Gets and sets a custom property value.

public string Value { get; set; }

Examples

namespace AsposeCellsExamples
{
    using Aspose.Cells.WebExtensions;
    using System;

    public class WebExtensionPropertyPropertyValueDemo
    {
        public static void Run()
        {
            try
            {
                // Create a WebExtensionProperty instance
                WebExtensionProperty property = (WebExtensionProperty)Activator.CreateInstance(typeof(WebExtensionProperty));

                // Set and demonstrate Value property
                property.Value = "SampleValue123";
                Console.WriteLine($"Initial Value: {property.Value}");

                // Modify and show updated value
                property.Value = "UpdatedValue456";
                Console.WriteLine($"Modified Value: {property.Value}");
            }
            catch (Exception ex)
            {
                Console.WriteLine($"Error: {ex.Message}");
            }
        }
    }
}

See Also