Description Details Author(s) References Examples
Some of the common enumerations, majorly Micorsoft VBA Enums (for Word, Excel and PPT, etc) when applying mso-family functions in this package.
It contains a named list nested with named lists.
Office core (23): MsoAutoShape, MsoBackgroundStyleIndex, MsoBarPosition,
MsoBaselineAlignment, MsoBulletType, MsoCharacterSet, MsoChartElementType,
MsoDateTimeFormat, MsoFileType, MsoGradientStyle, MsoLineCapStyle, MsoLineStyle,
MsoLineDashStyle, MsoOrientation, MsoParagraphAlignment, MsoPatternType, MsoSegmentType,
MsoShapeType, MsoShapeStyleIndex, MsoTextDirection, MsoTextOrientation,
MsoThemeColorIndex, MsoThemeColorSchemeInde
Word (11): WdConstants, WdSaveFormat, WdApplyQuickStyleSets,
WdBuiltInProperty, WdColor, WdColorIndex, WdCellColor, WdBuiltinStyle,
WdCaptionNumberStyle, WdCharacterCase, WdCountry
Excel (59): XlApplicationInternational, XlAxisCrosses, XlAxisGroup,
XlAxisType, XlBackground, XlBarShape, XlBinsType, XlBorderWeight, XlCategoryLabelLevel,
XlCategoryType, XlChartElementPosition, XlChartGallery, XlChartItem, XlChartPicturePlacement,
XlChartPictureType, XlChartSplitType, XlChartType, XlColorIndex, XlConstants,
XlDataBarAxisPosition, XlDataBarBorderType, XlDataBarFillType, XlDataBarNegativeColorType,
XlDataLabelPosition, XlDataLabelsType, XlDataSeriesDate, XlDataSeriesType,
XlDeleteShiftDirection, XlDisplayBlanksAs, XlDisplayUnit, XlEndStyleCap,
XlErrorBarDirection, XlErrorBarInclude, XlErrorBarType, XlFileAccess, XlFileFormat,
XlHAlign, XlIcon, XlLegendPosition, XlLineStyle, XlMarkerStyle, XlOLEType,
XlOrientation, XlPattern, XlPieSliceLocation, XlRgbColor, XlRowCol, XlScaleType,
XlSeriesNameLevel, XlSheetType, XlTableStyleElementType, XlThemeColor,
XlTickLabelOrientation, XlTickLabelPosition, XlTickMark, XlTimeUnit, XlTrendlineType,
XlUnderlineStyle, XlVAlign
PowerPoint (18): PpBaselineAlignment, PpBorderType, PpBulletType,
PpChangeCase, PpColorSchemeIndex, PpDateTimeFormat, PpEntryEffect, PpFollowColors,
PpFrameColors, PpGuideOrientation, PpNumberedBulletStyle, PpParagraphAlignment,
PpPlaceholderType, PpSaveAsFileType, PpSelectionType, PpSlideLayout, PpSlideSizeType,
PpTextStyleType
You can use enum
function to extract the enum values.
Yiying Wang wangy@aetna.com
You can read the Microsoft official API document
Office core: https://docs.microsoft.com/en-us/dotnet/api/microsoft.office.core?view=office-pia
Word: https://docs.microsoft.com/en-us/office/vba/api/word(enumerations)
Excel: https://docs.microsoft.com/en-us/office/vba/api/excel(enumerations)
PowerPoint: https://docs.microsoft.com/en-us/office/vba/api/Powerpoint(enumerations)
1 2 3 4 5 6 7 8 9 10 11 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.