You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
952 B
C#

namespace com.azkoss.excellite
{
using System;
internal class XLSDescriptor
{
// Methods
public XLSDescriptor(string name, int code, int bodySize, Type handlerClass, object[] bodyFormat)
{
this.Name = name;
this.Code = code;
this.BodySize = bodySize;
this.HandlerClass = handlerClass;
this.BodyFormat = bodyFormat;
}
// Properties
public bool IsFixedSize
{
get
{
return (this.BodySize >= 0);
}
}
// Fields
public object[] BodyFormat;
public int BodySize;
public int Code;
public const int ConditionalFormattings = -11;
public const int DontCare = -2;
public Type HandlerClass;
public string Name;
public const int VarSize = -1;
public const int WorksheetDrawings = -10;
}
}