/// <summary>
 /// Initializes a new instance of the <see cref="WordSelectionRange"/> class.
 /// </summary>
 /// <param name="windowHandle">The window handle.</param>
 /// <param name="selectionInfo">The selection info.</param>
 /// <param name="manager">The technology manager.</param>
 internal WordSelectionRange(IntPtr windowHandle, WordSelectionInfo selectionInfo, WordTechnologyManager manager)
     : base(windowHandle, manager)
 {
     this.SelectionInfo = selectionInfo;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WordDocumentRange"/> class.
 /// </summary>
 /// <param name="windowHandle">The window handle.</param>
 /// <param name="documentInfo">The document info.</param>
 /// <param name="manager">The technology manager.</param>
 internal WordDocumentRange(IntPtr windowHandle, WordDocumentInfo documentInfo, WordTechnologyManager manager)
     : base(windowHandle, manager)
 {
     this.DocumentInfo = documentInfo;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WordRange"/> class.
 /// </summary>
 /// <param name="windowHandle">The window handle of this element.</param>
 /// <param name="manager">Reference to the manager of this element.</param>
 internal WordRange(IntPtr windowHandle, WordTechnologyManager manager)
 {
     this.windowHandle = windowHandle;
     this.techManager  = manager;
 }