Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the Msat class for the given Doc object.
 /// </summary>
 /// <param name="doc">The parent Doc object for the new Msat object.</param>
 public Msat(Ole2Document doc)
 {
     _doc = doc;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the Stream class for the provided Doc object.
 /// </summary>
 /// <param name="doc">The parent Doc object for this new Stream object.</param>
 public Stream(Ole2Document doc)
 {
     _doc = doc;
 }
Exemple #3
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();
        }
Exemple #4
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;
 }