Esempio n. 1
0
        /// <summary>
        /// Removes the security code.
        /// </summary>
        public void RemoveSecurity()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_SECURITY);
        }
        /// <summary>
        /// Removes the slide count.
        /// </summary>
        public void RemoveSlideCount()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_SLIDECOUNT);
        }
Esempio n. 3
0
        /// <summary>
        /// Removes the word count.
        /// </summary>
        public void RemoveWordCount()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_WORDCOUNT);
        }
Esempio n. 4
0
        /// <summary>
        /// Removes the thumbnail.
        /// </summary>
        public void RemoveThumbnail()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_THUMBNAIL);
        }
Esempio n. 5
0
        /// <summary>
        /// Removes the last printed.
        /// </summary>
        public void RemoveLastPrinted()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_LASTPRINTED);
        }
Esempio n. 6
0
        /// <summary>
        /// Removes the last save date time.
        /// </summary>
        public void RemoveLastSaveDateTime()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_LASTSAVE_DTM);
        }
        /// <summary>
        /// Removes the manager.
        /// </summary>
        public void RemoveManager()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_MANAGER);
        }
Esempio n. 8
0
        /// <summary>
        /// Removes the rev number.
        /// </summary>
        public void RemoveRevNumber()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_REVNUMBER);
        }
        /// <summary>
        /// Removes the heading pair.
        /// </summary>
        public void RemoveHeadingPair()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_HEADINGPAIR);
        }
        /// <summary>
        /// Removes the doc parts.
        /// </summary>
        public void RemoveDocparts()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_DOCPARTS);
        }
        /// <summary>
        /// Removes the scale.
        /// </summary>
        public void RemoveScale()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_SCALE);
        }
        /// <summary>
        /// Removes the MMClip count.
        /// </summary>
        public void RemoveMMClipCount()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_MMCLIPCOUNT);
        }
        /// <summary>
        /// Removes the hidden count.
        /// </summary>
        public void RemoveHiddenCount()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_HIDDENCOUNT);
        }
Esempio n. 14
0
        /// <summary>
        /// Removes the template.
        /// </summary>
        public void RemoveTemplate()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_TEMPLATE);
        }
        /// <summary>
        /// Removes the company.
        /// </summary>
        public void RemoveCompany()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_COMPANY);
        }
Esempio n. 16
0
        /// <summary>
        /// Removes the last author.
        /// </summary>
        public void RemoveLastAuthor()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_LASTAUTHOR);
        }
        /// <summary>
        /// Removes the links dirty.
        /// </summary>
        public void RemoveLinksDirty()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_LINKSDIRTY);
        }
Esempio n. 18
0
        /// <summary>
        /// Removes the edit time.
        /// </summary>
        public void RemoveEditTime()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_EDITTIME);
        }
        /// <summary>
        /// Removes the category.
        /// </summary>
        public void RemoveCategory()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_CATEGORY);
        }
Esempio n. 20
0
        /// <summary>
        /// Removes the create date time.
        /// </summary>
        public void RemoveCreateDateTime()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_Create_DTM);
        }
 /// <summary>
 /// Creates section 2 if it is not alReady present.
 /// </summary>
 private void EnsureSection2()
 {
     if (SectionCount < 2)
     {
         MutableSection s2 = new MutableSection();
         s2.SetFormatID(SectionIDMap.DOCUMENT_SUMMARY_INFORMATION_ID2);
         AddSection(s2);
     }
 }
Esempio n. 22
0
        /// <summary>
        /// Removes the page count.
        /// </summary>
        public void RemovePageCount()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_PAGECOUNT);
        }
Esempio n. 23
0
        /// <summary>
        /// Removes the subject.
        /// </summary>
        public void RemoveSubject()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_SUBJECT);
        }
Esempio n. 24
0
        /// <summary>
        /// Removes the char count.
        /// </summary>
        public void RemoveCharCount()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_CHARCOUNT);
        }
Esempio n. 25
0
        /// <summary>
        /// Removes the keywords.
        /// </summary>
        public void RemoveKeywords()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_KEYWORDS);
        }
Esempio n. 26
0
        /// <summary>
        /// Removes the name of the application.
        /// </summary>
        public void RemoveApplicationName()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_APPNAME);
        }
Esempio n. 27
0
        /// <summary>
        /// Removes the comments.
        /// </summary>
        public void RemoveComments()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_COMMENTS);
        }
Esempio n. 28
0
        /// <summary>
        /// Removes the title.
        /// </summary>
        public void RemoveTitle()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_TITLE);
        }
        /// <summary>
        /// Removes the presentation format.
        /// </summary>
        public void RemovePresentationFormat()
        {
            MutableSection s = (MutableSection)FirstSection;

            s.RemoveProperty(PropertyIDMap.PID_PRESFORMAT);
        }