예제 #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;
 }
예제 #2
0
파일: Stream.cs 프로젝트: neao2002/RS.Core
 /// <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;
 }
예제 #3
0
파일: Header.cs 프로젝트: neao2002/RS.Core
        /// <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();
        }
예제 #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;
 }