Class XmlColumnProperty

XmlColumnProperty class

Represents Xml Data Binding information.

public class XmlColumnProperty

Constructors

NameDescription
XmlColumnProperty()The default constructor.

Examples

[C#]

namespace Demos
{
    using Aspose.Cells;
    using System;

    public class XmlColumnPropertyDemo
    {
        public static void XmlColumnPropertyExample()
        {
            // Create a new workbook
            Workbook workbook = new Workbook();
            
            // Access the first worksheet in the workbook
            Worksheet worksheet = workbook.Worksheets[0];
            
            // Create an instance of XmlColumnProperty
            XmlColumnProperty xmlColumnProperty = new XmlColumnProperty();
            
            // Since XmlColumnProperty does not have any properties or methods,
            // we will just demonstrate creating an instance of it.
            
            // Save the workbook
            workbook.Save("XmlColumnPropertyExample.xlsx");

            return;
        }
    }
}

See Also