Newer
Older
ClosedXML / ClosedXML / Excel / Drawings / Style / XLDrawingWeb.cs
@Francois Botha Francois Botha on 30 May 2017 474 bytes Unknown changes - something to do with line endings?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ClosedXML.Excel
{
    internal class XLDrawingWeb : IXLDrawingWeb
    {
        private readonly IXLDrawingStyle _style;

        public XLDrawingWeb(IXLDrawingStyle style)
        {
            _style = style;
        }
        public String AlternateText { get; set; }		public IXLDrawingStyle SetAlternateText(String value) { AlternateText = value; return _style; }

    }
}