
net.rgielen.com4j.office2010.word.WdBuiltInProperty Maven / Gradle / Ivy
package net.rgielen.com4j.office2010.word ;
import com4j.*;
/**
*/
public enum WdBuiltInProperty implements ComEnum {
/**
*
* The value of this constant is 1
*
*/
wdPropertyTitle(1),
/**
*
* The value of this constant is 2
*
*/
wdPropertySubject(2),
/**
*
* The value of this constant is 3
*
*/
wdPropertyAuthor(3),
/**
*
* The value of this constant is 4
*
*/
wdPropertyKeywords(4),
/**
*
* The value of this constant is 5
*
*/
wdPropertyComments(5),
/**
*
* The value of this constant is 6
*
*/
wdPropertyTemplate(6),
/**
*
* The value of this constant is 7
*
*/
wdPropertyLastAuthor(7),
/**
*
* The value of this constant is 8
*
*/
wdPropertyRevision(8),
/**
*
* The value of this constant is 9
*
*/
wdPropertyAppName(9),
/**
*
* The value of this constant is 10
*
*/
wdPropertyTimeLastPrinted(10),
/**
*
* The value of this constant is 11
*
*/
wdPropertyTimeCreated(11),
/**
*
* The value of this constant is 12
*
*/
wdPropertyTimeLastSaved(12),
/**
*
* The value of this constant is 13
*
*/
wdPropertyVBATotalEdit(13),
/**
*
* The value of this constant is 14
*
*/
wdPropertyPages(14),
/**
*
* The value of this constant is 15
*
*/
wdPropertyWords(15),
/**
*
* The value of this constant is 16
*
*/
wdPropertyCharacters(16),
/**
*
* The value of this constant is 17
*
*/
wdPropertySecurity(17),
/**
*
* The value of this constant is 18
*
*/
wdPropertyCategory(18),
/**
*
* The value of this constant is 19
*
*/
wdPropertyFormat(19),
/**
*
* The value of this constant is 20
*
*/
wdPropertyManager(20),
/**
*
* The value of this constant is 21
*
*/
wdPropertyCompany(21),
/**
*
* The value of this constant is 22
*
*/
wdPropertyBytes(22),
/**
*
* The value of this constant is 23
*
*/
wdPropertyLines(23),
/**
*
* The value of this constant is 24
*
*/
wdPropertyParas(24),
/**
*
* The value of this constant is 25
*
*/
wdPropertySlides(25),
/**
*
* The value of this constant is 26
*
*/
wdPropertyNotes(26),
/**
*
* The value of this constant is 27
*
*/
wdPropertyHiddenSlides(27),
/**
*
* The value of this constant is 28
*
*/
wdPropertyMMClips(28),
/**
*
* The value of this constant is 29
*
*/
wdPropertyHyperlinkBase(29),
/**
*
* The value of this constant is 30
*
*/
wdPropertyCharsWSpaces(30),
;
private final int value;
WdBuiltInProperty(int value) { this.value=value; }
public int comEnumValue() { return value; }
}