예제 #1
0
 /// <summary>
 /// Initializes a new instance of the Sat class for the provided Doc object.
 /// </summary>
 /// <param name="doc">The parent Doc object for this new Sat object.</param>
 public Sat(Ole2Document doc)
 {
     _doc = doc;
 }
예제 #2
0
        /// <summary>
        /// Initializes a new instance of the Header class for the given Document object.
        /// </summary>
        /// <param name="doc">The parent OleDocument object for this Header object.</param>
        public Header(Ole2Document doc)
        {
            _doc = doc;

            SetDefaults();
        }
예제 #3
0
 /// <summary>
 /// Initializes a new instance of the Directory class for the provided Doc object.
 /// </summary>
 /// <param name="doc">The Doc object to which this new Directory is to belong.</param>
 public Directory(Ole2Document doc)
 {
     _doc = doc;
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the Streams class for the given Doc object.
 /// </summary>
 /// <param name="doc">The parent Doc object for this new Streams object.</param>
 public Streams(Ole2Document doc)
 {
     _doc = doc;
 }