public RTDocumentHelper ( Capability capability )
        {
            this.capability = capability;

            // Set up delegate that is used to send the slides on a background thread
            beginSendAllSlidesDelegate = new SendAllSlidesHandler(SendAllSlides);
        }
示例#2
0
        public RTDocumentHelper(Capability capability)
        {
            this.capability = capability;

            // Set up delegate that is used to send the slides on a background thread
            beginSendAllSlidesDelegate = new SendAllSlidesHandler(SendAllSlides);
        }
        public RTDocumentHelper ( Capability capability, RTDocument rtDocument )
        {
            this.capability = capability;

            this.rtDocument = rtDocument;
            rtDocumentIdentifier = rtDocument.Identifier;

            // Set up delegate that is used to send the slides on a background thread
            beginSendAllSlidesDelegate = new SendAllSlidesHandler(SendAllSlides);
        }
示例#4
0
        public RTDocumentHelper(Capability capability, RTDocument rtDocument)
        {
            this.capability = capability;

            this.rtDocument      = rtDocument;
            rtDocumentIdentifier = rtDocument.Identifier;

            // Set up delegate that is used to send the slides on a background thread
            beginSendAllSlidesDelegate = new SendAllSlidesHandler(SendAllSlides);
        }