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.

23 lines
443 B
C#

namespace com.azkoss.excellite
{
using System;
using System.IO;
internal class SSTRelated : XLSRecord
{
// Methods
public SSTRelated(XLSDescriptor descriptor) : base(descriptor)
{
}
public SSTRelated(XLSDescriptor descriptor, int bodySize, BinaryReader br) : base(descriptor, bodySize, br)
{
}
// Fields
public ExcelLongStrings ExcelStrings;
}
}