Win32::OLE::Constからエキスポートされた定数(Outlook)

戻る

プログラム ------------------------------------------------------------------------------ use strict; use Win32::OLE; use Win32::OLE::Const; my $xl = Win32::OLE::Const->Load("Microsoft Outlook"); printf "Outlook type libary contains %d constants:\n", scalar keys %$xl; foreach my $Key ( sort keys %$xl ) { print "$Key = $xl->{$Key}\n"; } Outlook2007の出力 ------------------------------------------------------------------------------ Outlook type libary contains 803 constants: OlFormatDateTimeLongDayDate = 5 olAccount = 105 olAccountRuleCondition = 135 olAccounts = 106 olAction = 32 olActions = 33 olAddressEntries = 21 olAddressEntry = 8 olAddressList = 7 olAddressLists = 20 olAddressRuleCondition = 170 olAgent = 3 olAlignCenter = 1 olAlignLeft = 0 olAlignRight = 2 olAlignmentLeft = 0 olAlignmentRight = 1 olAllCollapsed = 1 olAllExpanded = 0 olAlwaysMultiLine = 2 olAlwaysSingleLine = 1 olApplication = 0 olAppointment = 26 olAppointmentItem = 1 olAppointmentTimeFieldEnd = 3 olAppointmentTimeFieldNone = 1 olAppointmentTimeFieldStart = 2 olApptException = 3 olApptMaster = 1 olApptNotRecurring = 0 olApptOccurrence = 2 olAscending = 1 olAssignToCategoryRuleAction = 122 olAssociatedContact = 1 olAttachment = 5 olAttachmentBlockLevelNone = 0 olAttachmentBlockLevelOpen = 1 olAttachmentContextMenu = 3 olAttachmentSelection = 169 olAttachments = 18 olAutoColor = 0 olAutoDiscoverConnectionExternal = 1 olAutoDiscoverConnectionInternal = 2 olAutoDiscoverConnectionInternalDomain = 3 olAutoDiscoverConnectionUnknown = 0 olAutoFormatRule = 147 olAutoFormatRules = 148 olAutoPreviewAll = 0 olAutoPreviewNone = 2 olAutoPreviewUnread = 1 olBCC = 3 olBackStyleOpaque = 1 olBackStyleTransparent = 0 olBlue = 0 olBlueFlagIcon = 5 olBorderStyleNone = 0 olBorderStyleSingle = 1 olBusiness = 2 olBusinessCardTypeInterConnect = 1 olBusinessCardTypeOutlook = 0 olBusinessCardView = 5 olBusy = 2 olByReference = 4 olByValue = 1 olCC = 2 olCachedConnectedDrizzle = 600 olCachedConnectedFull = 700 olCachedConnectedHeaders = 500 olCachedDisconnected = 400 olCachedOffline = 200 olCalendarMailFormatDailySchedule = 0 olCalendarMailFormatEventList = 1 olCalendarModule = 159 olCalendarSharing = 151 olCalendarView = 2 olCalendarView5DayWeek = 4 olCalendarViewDay = 0 olCalendarViewMonth = 2 olCalendarViewMultiDay = 3 olCalendarViewWeek = 1 olCardView = 1 olCategories = 153 olCategory = 152 olCategoryColorBlack = 15 olCategoryColorBlue = 8 olCategoryColorDarkBlue = 23 olCategoryColorDarkGray = 14 olCategoryColorDarkGreen = 20 olCategoryColorDarkMaroon = 25 olCategoryColorDarkOlive = 22 olCategoryColorDarkOrange = 17 olCategoryColorDarkPeach = 18 olCategoryColorDarkPurple = 24 olCategoryColorDarkRed = 16 olCategoryColorDarkSteel = 12 olCategoryColorDarkTeal = 21 olCategoryColorDarkYellow = 19 olCategoryColorGray = 13 olCategoryColorGreen = 5 olCategoryColorMaroon = 10 olCategoryColorNone = 0 olCategoryColorOlive = 7 olCategoryColorOrange = 2 olCategoryColorPeach = 3 olCategoryColorPurple = 9 olCategoryColorRed = 1 olCategoryColorSteel = 11 olCategoryColorTeal = 6 olCategoryColorYellow = 4 olCategoryRuleCondition = 130 olCategoryShortcutKeyCtrlF10 = 9 olCategoryShortcutKeyCtrlF11 = 10 olCategoryShortcutKeyCtrlF12 = 11 olCategoryShortcutKeyCtrlF2 = 1 olCategoryShortcutKeyCtrlF3 = 2 olCategoryShortcutKeyCtrlF4 = 3 olCategoryShortcutKeyCtrlF5 = 4 olCategoryShortcutKeyCtrlF6 = 5 olCategoryShortcutKeyCtrlF7 = 6 olCategoryShortcutKeyCtrlF8 = 7 olCategoryShortcutKeyCtrlF9 = 8 olCategoryShortcutKeyNone = 0 olClassBusinessCardView = 168 olClassCalendarView = 139 olClassCardView = 138 olClassIconView = 137 olClassNavigationPane = 155 olClassTableView = 136 olClassTimeLineView = 140 olClassTimeZone = 174 olClassTimeZones = 175 olColorAqua = 15 olColorBlack = 1 olColorBlue = 13 olColorFuchsia = 14 olColorGray = 8 olColorGreen = 3 olColorLime = 11 olColorMaroon = 2 olColorNavy = 5 olColorOlive = 4 olColorPurple = 6 olColorRed = 10 olColorSilver = 9 olColorTeal = 7 olColorWhite = 16 olColorYellow = 12 olColumn = 154 olColumnFormat = 149 olColumns = 150 olCombination = 19 olComboBoxStyleCombo = 0 olComboBoxStyleList = 2 olConditionAccount = 3 olConditionAnyCategory = 29 olConditionBody = 13 olConditionBodyOrSubject = 14 olConditionCategory = 18 olConditionCc = 9 olConditionDateRange = 22 olConditionFlaggedForAction = 8 olConditionFormName = 23 olConditionFrom = 1 olConditionFromAnyRssFeed = 31 olConditionFromRssFeed = 30 olConditionHasAttachment = 20 olConditionImportance = 6 olConditionLocalMachineOnly = 27 olConditionMeetingInviteOrUpdate = 26 olConditionMessageHeader = 15 olConditionNotTo = 11 olConditionOOF = 19 olConditionOnlyToMe = 4 olConditionOtherMachine = 28 olConditionProperty = 24 olConditionRecipientAddress = 16 olConditionSenderAddress = 17 olConditionSenderInAddressBook = 25 olConditionSensitivity = 7 olConditionSentTo = 12 olConditionSizeRange = 21 olConditionSubject = 2 olConditionTo = 5 olConditionToOrCc = 10 olConditionUnknown = 0 olConfidential = 3 olConflict = 102 olConflicts = 103 olContact = 40 olContactItem = 2 olContactPhoneAssistant = 0 olContactPhoneBusiness = 1 olContactPhoneBusiness2 = 2 olContactPhoneBusinessFax = 3 olContactPhoneCallback = 4 olContactPhoneCar = 5 olContactPhoneCompany = 6 olContactPhoneHome = 7 olContactPhoneHome2 = 8 olContactPhoneHomeFax = 9 olContactPhoneISDN = 10 olContactPhoneMobile = 11 olContactPhoneOther = 12 olContactPhoneOtherFax = 13 olContactPhonePager = 14 olContactPhonePrimary = 15 olContactPhoneRadio = 16 olContactPhoneTTYTTD = 18 olContactPhoneTelex = 17 olContactsModule = 160 olCurrency = 14 olCustomAddressList = 4 olCustomFoldersGroup = 0 olDailyTaskListView = 6 olDateTime = 5 olDefaultDelegates = 6 olDefaultMail = 1 olDefaultMeeting = 2 olDefaultMembers = 5 olDefaultPickRooms = 8 olDefaultRegistry = 0 olDefaultSharingRequest = 4 olDefaultSingleName = 7 olDefaultTask = 3 olDelegatedTask = 1 olDescending = 2 olDiscard = 1 olDisconnected = 300 olDistList = 1 olDistributionList = 69 olDistributionListItem = 7 olDoNotForward = 1 olDoc = 4 olDocument = 41 olDontShow = 0 olDragBehaviorDisabled = 0 olDragBehaviorEnabled = 1 olDuration = 7 olEditorHTML = 2 olEditorRTF = 3 olEditorText = 1 olEditorWord = 4 olEmbedOriginalItem = 1 olEmbeddeditem = 5 olEnterFieldBehaviorRecallSelection = 1 olEnterFieldBehaviorSelectAll = 0 olEnumeration = 21 olException = 30 olExceptions = 29 olExchange = 0 olExchangeAgentAddressEntry = 3 olExchangeConferencing = 2 olExchangeContainer = 1 olExchangeDistributionList = 111 olExchangeDistributionListAddressEntry = 1 olExchangeGlobalAddressList = 0 olExchangeMailbox = 1 olExchangeOrganizationAddressEntry = 4 olExchangePublicFolder = 2 olExchangePublicFolderAddressEntry = 2 olExchangeRemoteUserAddressEntry = 5 olExchangeUser = 110 olExchangeUserAddressEntry = 0 olExplorer = 34 olExplorers = 60 olFavoriteFoldersGroup = 4 olFemale = 1 olFinalStatus = 3 olFlagComplete = 1 olFlagMarked = 2 olFolder = 2 olFolderCalendar = 9 olFolderConflicts = 19 olFolderContacts = 10 olFolderContextMenu = 2 olFolderDeletedItems = 3 olFolderDisplayFolderOnly = 1 olFolderDisplayNoNavigation = 2 olFolderDisplayNormal = 0 olFolderDrafts = 16 olFolderInbox = 6 olFolderJournal = 11 olFolderJunk = 23 olFolderList = 2 olFolderLocalFailures = 21 olFolderManagedEmail = 29 olFolderNotes = 12 olFolderOutbox = 4 olFolderRegistry = 3 olFolderRssFeeds = 25 olFolderSentMail = 5 olFolderServerFailures = 22 olFolderSyncIssues = 20 olFolderTasks = 13 olFolderToDo = 28 olFolders = 15 olFormDescription = 37 olFormNameRuleCondition = 131 olFormRegion = 129 olFormRegionCompose = 1 olFormRegionIconDefault = 1 olFormRegionIconEncrypted = 9 olFormRegionIconForwarded = 5 olFormRegionIconPage = 11 olFormRegionIconRead = 3 olFormRegionIconRecurring = 12 olFormRegionIconReplied = 4 olFormRegionIconSigned = 8 olFormRegionIconSubmitted = 7 olFormRegionIconUnread = 2 olFormRegionIconUnsent = 6 olFormRegionIconWindow = 10 olFormRegionPreview = 2 olFormRegionRead = 0 olFormRegionTypeAdjoining = 1 olFormRegionTypeSeparate = 0 olFormatCurrencyDecimal = 1 olFormatCurrencyNonDecimal = 2 olFormatDateTimeBestFit = 17 olFormatDateTimeLongDate = 6 olFormatDateTimeLongDateReversed = 7 olFormatDateTimeLongDayDateTime = 1 olFormatDateTimeLongTime = 15 olFormatDateTimeShortDate = 8 olFormatDateTimeShortDateNumOnly = 9 olFormatDateTimeShortDateTime = 2 olFormatDateTimeShortDayDate = 13 olFormatDateTimeShortDayDateTime = 3 olFormatDateTimeShortDayMonth = 10 olFormatDateTimeShortDayMonthDateTime = 4 olFormatDateTimeShortMonthYear = 11 olFormatDateTimeShortMonthYearNumOnly = 12 olFormatDateTimeShortTime = 16 olFormatDurationLong = 2 olFormatDurationLongBusiness = 4 olFormatDurationShort = 1 olFormatDurationShortBusiness = 3 olFormatEnumBitmap = 1 olFormatEnumText = 2 olFormatHTML = 2 olFormatIntegerComputer1 = 2 olFormatIntegerComputer2 = 3 olFormatIntegerComputer3 = 4 olFormatIntegerPlain = 1 olFormatKeywordsText = 1 olFormatNumber1Decimal = 3 olFormatNumber2Decimal = 4 olFormatNumberAllDigits = 1 olFormatNumberComputer1 = 6 olFormatNumberComputer2 = 7 olFormatNumberComputer3 = 8 olFormatNumberRaw = 9 olFormatNumberScientific = 5 olFormatNumberTruncated = 2 olFormatPercent1Decimal = 2 olFormatPercent2Decimal = 3 olFormatPercentAllDigits = 4 olFormatPercentRounded = 1 olFormatPlain = 1 olFormatRichText = 3 olFormatSmartFromFromOnly = 2 olFormatSmartFromFromTo = 1 olFormatTextText = 1 olFormatUnspecified = 0 olFormatYesNoIcon = 4 olFormatYesNoOnOff = 2 olFormatYesNoTrueFalse = 3 olFormatYesNoYesNo = 1 olFormula = 18 olForum = 2 olForward = 2 olFree = 0 olFreeBusyAndSubject = 1 olFreeBusyOnly = 0 olFriday = 32 olFromRssFeedRuleCondition = 173 olFromRuleCondition = 132 olFullDetails = 2 olFullItem = 1 olGreen = 1 olGreenFlagIcon = 3 olGridLineDashes = 3 olGridLineLargeDots = 2 olGridLineNone = 0 olGridLineSmallDots = 1 olGridLineSolid = 4 olHTML = 5 olHeaderOnly = 0 olHiddenItems = 1 olHome = 1 olHorizontalLayoutAlignCenter = 1 olHorizontalLayoutAlignLeft = 0 olHorizontalLayoutAlignRight = 2 olHorizontalLayoutGrow = 3 olHttp = 3 olICal = 8 olIconAutoArrange = 2 olIconDoNotArrange = 0 olIconLineUp = 1 olIconSortAndAutoArrange = 3 olIconView = 3 olIconViewLarge = 0 olIconViewList = 2 olIconViewSmall = 1 olIdentifyByEntryID = 1 olIdentifyByMessageClass = 2 olIdentifyBySubject = 0 olImap = 1 olImportanceHigh = 2 olImportanceLow = 0 olImportanceNormal = 1 olImportanceRuleCondition = 128 olIncludeOriginalText = 2 olIndentOriginalText = 3 olInspector = 35 olInspectors = 61 olInteger = 20 olItemContextMenu = 0 olItemProperties = 98 olItemProperty = 99 olItems = 16 olJournal = 42 olJournalItem = 4 olJournalModule = 162 olKeywords = 11 olLargeIcon = 0 olLastViewed = 2 olLdapAddressEntry = 20 olLink = 75 olLinkOriginalItem = 4 olLinks = 76 olMHTML = 10 olMSG = 3 olMSGUnicode = 9 olMail = 43 olMailItem = 0 olMailModule = 158 olMale = 2 olMarkAsTaskRuleAction = 124 olMarkNextWeek = 3 olMarkNoDate = 4 olMarkThisWeek = 2 olMarkToday = 0 olMarkTomorrow = 1 olMarkedForCopy = 3 olMarkedForDelete = 4 olMarkedForDownload = 2 olMatchEntryComplete = 1 olMatchEntryFirstLetter = 0 olMatchEntryNone = 2 olMaximized = 0 olMeeting = 1 olMeetingAccepted = 3 olMeetingCanceled = 5 olMeetingCancellation = 54 olMeetingDeclined = 4 olMeetingReceived = 3 olMeetingReceivedAndCanceled = 7 olMeetingRequest = 53 olMeetingResponseNegative = 55 olMeetingResponsePositive = 56 olMeetingResponseTentative = 57 olMeetingTentative = 2 olMenu = 1 olMenuAndToolbar = 2 olMinimized = 1 olModuleCalendar = 1 olModuleContacts = 2 olModuleFolderList = 6 olModuleJournal = 4 olModuleMail = 0 olModuleNotes = 5 olModuleShortcuts = 7 olModuleTasks = 3 olMonday = 2 olMouseButtonLeft = 1 olMouseButtonMiddle = 4 olMouseButtonRight = 2 olMousePointerAppStarting = 13 olMousePointerArrow = 1 olMousePointerCross = 2 olMousePointerCustom = 99 olMousePointerDefault = 0 olMousePointerHelp = 14 olMousePointerHourGlass = 11 olMousePointerIBeam = 3 olMousePointerNoDrop = 12 olMousePointerSizeAll = 15 olMousePointerSizeNESW = 6 olMousePointerSizeNS = 7 olMousePointerSizeNWSE = 8 olMousePointerSizeWE = 9 olMousePointerUpArrow = 10 olMoveOrCopyRuleAction = 118 olMultiSelectExtended = 2 olMultiSelectMulti = 1 olMultiSelectSingle = 0 olMyFoldersGroup = 1 olNamespace = 1 olNavigationFolder = 167 olNavigationFolders = 166 olNavigationGroup = 165 olNavigationGroups = 164 olNavigationModule = 157 olNavigationModules = 156 olNavigationPane = 4 olNetMeeting = 0 olNetShow = 1 olNewItemAlertRuleAction = 125 olNewTask = 0 olNoExchange = 0 olNoFlag = 0 olNoFlagIcon = 0 olNoItemCount = 0 olNonMeeting = 0 olNone = 0 olNormal = 0 olNormalWindow = 2 olNotExchange = 3 olNote = 44 olNoteItem = 5 olNotesModule = 163 olNumber = 3 olOLE = 6 olOffline = 100 olOmitOriginalText = 0 olOnline = 800 olOpen = 0 olOptional = 2 olOrangeFlagIcon = 2 olOrderField = 144 olOrderFields = 145 olOrganization = 4 olOrganizationRegistry = 4 olOrganizer = 0 olOriginator = 0 olOther = 3 olOtherAccount = 5 olOtherAddressEntry = 40 olOtherFoldersGroup = 3 olOutOfOffice = 3 olOutlookAddressList = 2 olOutlookBar = 1 olOutlookBarGroup = 66 olOutlookBarGroups = 65 olOutlookBarPane = 63 olOutlookBarShortcut = 68 olOutlookBarShortcuts = 67 olOutlookBarStorage = 64 olOutlookContactAddressEntry = 10 olOutlookDistributionListAddressEntry = 11 olOutlookInternal = 0 olOutlookLdapAddressList = 3 olOwnTask = 2 olPageTypePlanner = 0 olPageTypeTracker = 1 olPages = 36 olPanes = 62 olPassport = 2 olPeopleFoldersGroup = 2 olPercent = 12 olPermissionTemplate = 2 olPersonal = 1 olPersonalRegistry = 2 olPictureAlignmentLeft = 0 olPictureAlignmentTop = 1 olPink = 2 olPlaySoundRuleAction = 123 olPop3 = 2 olPost = 45 olPostItem = 6 olPreview = 3 olPrimaryExchangeMailbox = 0 olPrivate = 2 olPrivateDistList = 5 olPrompt = 2 olPromptForSave = 2 olPropertyAccessor = 112 olPropertyPageSite = 70 olPropertyPages = 71 olProviderExchange = 1 olProviderICal = 4 olProviderPubCal = 3 olProviderRSS = 6 olProviderSharePoint = 5 olProviderUnknown = 0 olProviderWebCal = 2 olPublicFoldersAllPublicFolders = 18 olPurpleFlagIcon = 1 olRTF = 1 olRecipient = 4 olRecipients = 17 olRecurrencePattern = 28 olRecursDaily = 0 olRecursMonthNth = 3 olRecursMonthly = 2 olRecursWeekly = 1 olRecursYearNth = 6 olRecursYearly = 5 olRedFlagIcon = 6 olReminder = 101 olReminders = 100 olRemote = 47 olRemoteStatusNone = 0 olRemoteUser = 6 olReply = 0 olReplyAll = 1 olReplyFolder = 3 olReplyTickOriginalText = 1000 olReport = 46 olRequired = 1 olResource = 3 olRespond = 4 olResponseAccepted = 3 olResponseDeclined = 4 olResponseNone = 0 olResponseNotResponded = 5 olResponseOrganized = 1 olResponseTentative = 2 olResults = 78 olRow = 121 olRule = 115 olRuleAction = 117 olRuleActionAssignToCategory = 2 olRuleActionCcMessage = 27 olRuleActionClearCategories = 30 olRuleActionCopyToFolder = 5 olRuleActionCustomAction = 22 olRuleActionDefer = 28 olRuleActionDelete = 3 olRuleActionDeletePermanently = 4 olRuleActionDesktopAlert = 24 olRuleActionFlagClear = 13 olRuleActionFlagColor = 12 olRuleActionFlagForActionInDays = 11 olRuleActionForward = 6 olRuleActionForwardAsAttachment = 7 olRuleActionImportance = 14 olRuleActionMarkAsTask = 29 olRuleActionMarkRead = 19 olRuleActionMoveToFolder = 1 olRuleActionNewItemAlert = 23 olRuleActionNotifyDelivery = 26 olRuleActionNotifyRead = 25 olRuleActionPlaySound = 17 olRuleActionPrint = 16 olRuleActionRedirect = 8 olRuleActionRunScript = 20 olRuleActionSensitivity = 15 olRuleActionServerReply = 9 olRuleActionStartApplication = 18 olRuleActionStop = 21 olRuleActionTemplate = 10 olRuleActionUnknown = 0 olRuleActions = 116 olRuleCondition = 127 olRuleConditions = 126 olRuleExecuteAllMessages = 0 olRuleExecuteReadMessages = 1 olRuleExecuteUnreadMessages = 2 olRuleReceive = 0 olRuleSend = 1 olRules = 114 olSaturday = 64 olSave = 0 olScrollBarsBoth = 3 olScrollBarsHorizontal = 1 olScrollBarsNone = 0 olScrollBarsVertical = 2 olSearch = 77 olSearchScopeAllFolders = 1 olSearchScopeCurrentFolder = 0 olSelectNamesDialog = 109 olSelection = 74 olSend = 1 olSendRuleAction = 119 olSenderInAddressListRuleCondition = 133 olSharing = 104 olSharingMsgTypeInvite = 2 olSharingMsgTypeInviteAndRequest = 3 olSharingMsgTypeRequest = 1 olSharingMsgTypeResponseAllow = 4 olSharingMsgTypeResponseDeny = 5 olSharingMsgTypeUnknown = 0 olShiftStateAltMask = 4 olShiftStateCtrlMask = 2 olShiftStateShiftMask = 1 olShortcutContextMenu = 5 olShowNone = 0 olShowTo = 1 olShowToCc = 2 olShowToCcBcc = 3 olShowTotalItemCount = 2 olShowUnreadItemCount = 1 olSmallIcon = 1 olSmartFrom = 22 olSmtpAddressEntry = 30 olSortNone = 0 olSpecialFolderAllTasks = 0 olSpecialFolderReminders = 1 olStorageItem = 113 olStore = 107 olStoreANSI = 3 olStoreContextMenu = 4 olStoreDefault = 1 olStoreUnicode = 2 olStores = 108 olStrong = 1 olSunday = 1 olSyncObject = 72 olSyncObjects = 73 olSyncStarted = 1 olSyncStopped = 0 olTXT = 0 olTable = 120 olTableView = 0 olTask = 48 olTaskAccept = 2 olTaskAssign = 1 olTaskComplete = 2 olTaskDecline = 3 olTaskDeferred = 4 olTaskDelegationAccepted = 2 olTaskDelegationDeclined = 3 olTaskDelegationUnknown = 1 olTaskInProgress = 1 olTaskItem = 3 olTaskNotDelegated = 0 olTaskNotStarted = 0 olTaskRequest = 49 olTaskRequestAccept = 51 olTaskRequestDecline = 52 olTaskRequestUpdate = 50 olTaskSimple = 0 olTaskWaiting = 3 olTasksModule = 161 olTemplate = 2 olTentative = 1 olText = 1 olTextAlignCenter = 2 olTextAlignLeft = 1 olTextAlignRight = 3 olTextRuleCondition = 134 olThursday = 16 olTimeScale10Minutes = 2 olTimeScale15Minutes = 3 olTimeScale30Minutes = 4 olTimeScale5Minutes = 0 olTimeScale60Minutes = 5 olTimeScale6Minutes = 1 olTimeStyleShortDuration = 4 olTimeStyleTimeDuration = 1 olTimeStyleTimeOnly = 0 olTimelineView = 4 olTimelineViewDay = 0 olTimelineViewMonth = 2 olTimelineViewWeek = 1 olTo = 1 olToDoBar = 5 olTrackingDelivered = 1 olTrackingNone = 0 olTrackingNotDelivered = 2 olTrackingNotRead = 3 olTrackingRead = 6 olTrackingRecallFailure = 4 olTrackingRecallSuccess = 5 olTrackingReplied = 7 olTuesday = 4 olUnMarked = 1 olUnknown = 0 olUnrestricted = 0 olUnspecified = 0 olUpdate = 2 olUser = 0 olUserDefinedProperties = 172 olUserDefinedProperty = 171 olUserItems = 0 olUserPreference = 5 olUserProperties = 38 olUserProperty = 39 olVCal = 7 olVCard = 6 olVerticalLayoutAlignBottom = 2 olVerticalLayoutAlignMiddle = 1 olVerticalLayoutAlignTop = 0 olVerticalLayoutGrow = 3 olView = 80 olViewContextMenu = 1 olViewField = 142 olViewFields = 141 olViewFont = 146 olViewSaveOptionAllFoldersOfType = 2 olViewSaveOptionThisFolderEveryone = 0 olViewSaveOptionThisFolderOnlyMe = 1 olViews = 79 olWeak = 0 olWednesday = 8 olWhite = 4 olWidthMultiLine = 0 olWindows = 1 olYellow = 3 olYellowFlagIcon = 4 olYesNo = 6 Outlook2000の出力 ------------------------------------------------------------------------------ Outlook type libary contains 316 constants: olAction = 32 olActions = 33 olAddressEntries = 21 olAddressEntry = 8 olAddressList = 7 olAddressLists = 20 olAgent = 3 olApplication = 0 olAppointment = 26 olAppointmentItem = 1 olApptException = 3 olApptMaster = 1 olApptNotRecurring = 0 olApptOccurrence = 2 olAscending = 1 olAssociatedContact = 1 olAttachment = 5 olAttachments = 18 olBCC = 3 olBlue = 0 olBlueFlagIcon = 5 olBusiness = 2 olBusy = 2 olByReference = 4 olByValue = 1 olCC = 2 olCachedConnectedDrizzle = 600 olCachedConnectedFull = 700 olCachedConnectedHeaders = 500 olCachedDisconnected = 400 olCachedOffline = 200 olCalendarView = 2 olCardView = 1 olCombination = 19 olConfidential = 3 olConflict = 102 olConflicts = 103 olContact = 40 olContactItem = 2 olCurrency = 14 olDateTime = 5 olDefaultRegistry = 0 olDelegatedTask = 1 olDescending = 2 olDiscard = 1 olDisconnected = 300 olDistList = 1 olDistributionList = 69 olDistributionListItem = 7 olDoNotForward = 1 olDoc = 4 olDocument = 41 olDontShow = 0 olDuration = 7 olEditorHTML = 2 olEditorRTF = 3 olEditorText = 1 olEditorWord = 4 olEmbedOriginalItem = 1 olEmbeddeditem = 5 olExcelWorkSheetItem = 8 olException = 30 olExceptions = 29 olExchangeConferencing = 2 olExplorer = 34 olExplorers = 60 olFemale = 1 olFinalStatus = 3 olFlagComplete = 1 olFlagMarked = 2 olFolder = 2 olFolderCalendar = 9 olFolderConflicts = 19 olFolderContacts = 10 olFolderDeletedItems = 3 olFolderDisplayFolderOnly = 1 olFolderDisplayNoNavigation = 2 olFolderDisplayNormal = 0 olFolderDrafts = 16 olFolderInbox = 6 olFolderJournal = 11 olFolderJunk = 23 olFolderList = 2 olFolderLocalFailures = 21 olFolderNotes = 12 olFolderOutbox = 4 olFolderRegistry = 3 olFolderSentMail = 5 olFolderServerFailures = 22 olFolderSyncIssues = 20 olFolderTasks = 13 olFolders = 15 olFormDescription = 37 olFormatHTML = 2 olFormatPlain = 1 olFormatRichText = 3 olFormatUnspecified = 0 olFormula = 18 olForum = 2 olForward = 2 olFree = 0 olFriday = 32 olFullItem = 1 olGreen = 1 olGreenFlagIcon = 3 olHTML = 5 olHeaderOnly = 0 olHome = 1 olICal = 8 olIconView = 3 olImportanceHigh = 2 olImportanceLow = 0 olImportanceNormal = 1 olIncludeOriginalText = 2 olIndentOriginalText = 3 olInspector = 35 olInspectors = 61 olItemProperties = 98 olItemProperty = 99 olItems = 16 olJournal = 42 olJournalItem = 4 olKeywords = 11 olLargeIcon = 0 olLink = 75 olLinkOriginalItem = 4 olLinks = 76 olMSG = 3 olMSGUnicode = 9 olMail = 43 olMailItem = 0 olMale = 2 olMarkedForCopy = 3 olMarkedForDelete = 4 olMarkedForDownload = 2 olMaximized = 0 olMeeting = 1 olMeetingAccepted = 3 olMeetingCanceled = 5 olMeetingCancellation = 54 olMeetingDeclined = 4 olMeetingReceived = 3 olMeetingRequest = 53 olMeetingResponseNegative = 55 olMeetingResponsePositive = 56 olMeetingResponseTentative = 57 olMeetingTentative = 2 olMenu = 1 olMenuAndToolbar = 2 olMinimized = 1 olMonday = 2 olNamespace = 1 olNavigationPane = 4 olNetMeeting = 0 olNetShow = 1 olNewTask = 0 olNoExchange = 0 olNoFlag = 0 olNoFlagIcon = 0 olNoItemCount = 0 olNonMeeting = 0 olNone = 0 olNormal = 0 olNormalWindow = 2 olNote = 44 olNoteItem = 5 olNumber = 3 olOLE = 6 olOffline = 100 olOmitOriginalText = 0 olOnline = 800 olOpen = 0 olOptional = 2 olOrangeFlagIcon = 2 olOrganization = 4 olOrganizationRegistry = 4 olOrganizer = 0 olOriginator = 0 olOther = 3 olOutOfOffice = 3 olOutlookBar = 1 olOutlookBarGroup = 66 olOutlookBarGroups = 65 olOutlookBarPane = 63 olOutlookBarShortcut = 68 olOutlookBarShortcuts = 67 olOutlookBarStorage = 64 olOutlookInternal = 0 olOwnTask = 2 olPages = 36 olPanes = 62 olPassport = 2 olPercent = 12 olPermissionTemplate = 2 olPersonal = 1 olPersonalRegistry = 2 olPink = 2 olPost = 45 olPostItem = 6 olPowerPointShowItem = 10 olPreview = 3 olPrivate = 2 olPrivateDistList = 5 olPrompt = 2 olPromptForSave = 2 olPropertyPageSite = 70 olPropertyPages = 71 olPublicFoldersAllPublicFolders = 18 olPurpleFlagIcon = 1 olRTF = 1 olRecipient = 4 olRecipients = 17 olRecurrencePattern = 28 olRecursDaily = 0 olRecursMonthNth = 3 olRecursMonthly = 2 olRecursWeekly = 1 olRecursYearNth = 6 olRecursYearly = 5 olRedFlagIcon = 6 olReminder = 101 olReminders = 100 olRemote = 47 olRemoteStatusNone = 0 olRemoteUser = 6 olReply = 0 olReplyAll = 1 olReplyFolder = 3 olReplyTickOriginalText = 1000 olReport = 46 olRequired = 1 olResource = 3 olRespond = 4 olResponseAccepted = 3 olResponseDeclined = 4 olResponseNone = 0 olResponseNotResponded = 5 olResponseOrganized = 1 olResponseTentative = 2 olResults = 78 olSaturday = 64 olSave = 0 olSearch = 77 olSelection = 74 olSend = 1 olShowTotalItemCount = 2 olShowUnreadItemCount = 1 olSmallIcon = 1 olSortNone = 0 olStoreANSI = 3 olStoreDefault = 1 olStoreUnicode = 2 olSunday = 1 olSyncObject = 72 olSyncObjects = 73 olSyncStarted = 1 olSyncStopped = 0 olTXT = 0 olTableView = 0 olTask = 48 olTaskAccept = 2 olTaskAssign = 1 olTaskComplete = 2 olTaskDecline = 3 olTaskDeferred = 4 olTaskDelegationAccepted = 2 olTaskDelegationDeclined = 3 olTaskDelegationUnknown = 1 olTaskInProgress = 1 olTaskItem = 3 olTaskNotDelegated = 0 olTaskNotStarted = 0 olTaskRequest = 49 olTaskRequestAccept = 51 olTaskRequestDecline = 52 olTaskRequestUpdate = 50 olTaskSimple = 0 olTaskWaiting = 3 olTemplate = 2 olTentative = 1 olText = 1 olThursday = 16 olTimelineView = 4 olTo = 1 olTrackingDelivered = 1 olTrackingNone = 0 olTrackingNotDelivered = 2 olTrackingNotRead = 3 olTrackingRead = 6 olTrackingRecallFailure = 4 olTrackingRecallSuccess = 5 olTrackingReplied = 7 olTuesday = 4 olUnMarked = 1 olUnknown = 0 olUnrestricted = 0 olUnspecified = 0 olUpdate = 2 olUser = 0 olUserPreference = 5 olUserProperties = 38 olUserProperty = 39 olVCal = 7 olVCard = 6 olView = 80 olViewSaveOptionAllFoldersOfType = 2 olViewSaveOptionThisFolderEveryone = 0 olViewSaveOptionThisFolderOnlyMe = 1 olViews = 79 olWednesday = 8 olWhite = 4 olWindows = 1 olWordDocumentItem = 9 olYellow = 3 olYellowFlagIcon = 4 olYesNo = 6

戻る