using System; using System.Collections.Generic; using System.Text; namespace Biff8Excel.Excel { public class DefColWidth :IDisposable { Biff8Excel.Records.DefaultColWidth m_def; int m_streamOffset; public DefColWidth() { m_def = new Biff8Excel.Records.DefaultColWidth(); } public int StreamOffset { set { m_streamOffset = value; } get { return m_streamOffset; } } internal byte[] WriteRecord() { return m_def.GetByte(); } #region IDisposable ³ΙΤ± public void Dispose() { m_def = null; } #endregion } }