MSOCOLOR: Microsoft Office Theme Colors

MSOCOLOR retrieves Microsoft Office Theme color schemes.
1,5K download
Aggiornato 24 apr 2012

Visualizza la licenza

MSOCOLOR is intended simplify the creation of MATLAB figures that are color-matched to MS Office documents.

MSOCOLOR is only compatible with MS Office 2007 or later (to the authors knowledge) and uses MATLAB's .NET interface and DOM XML reader.

MSOCOLOR('theme') reads color data from 'theme.xml' file in "Theme Colors" folders within (both global and user) Office Templates folders. The default theme (which is not given as a file) can be retrieved by specifying 'Office'. There are 40 additional built-in themes in MS Office 2010: Adjacency, Angles, Apex, Apothecary, Aspect, Austin, Black Tie, Civic, Clarity, Composite, Concourse, Couture, Elemental, Equity, Essential, Executive, Flow, Foundry, Grayscale, Grid, Hardcover, Horizon, Median, Metro, Module, Newsprint, Opulent, Oriel, Origin, Paper, Perspective, Pushpin, Slipstream, Solstice, Technic, Thatch, Trek, Urban, Verve, and Waveform.

MSOCOLOR(APPNAME) can retrieve the color scheme of currently active file in the Office application specified by APPNAME. APPNAME can be one of 'word', 'excel', or 'powerpoint'.

MSOCOLOR(APPNAME,FILENAME) may be used to retrieve the color scheme of an existing Office data file specified by FILENAME. The file must be a valid format for the specified application.

In addition to retrieving the colors as is, MSOCOLOR has the built-in capability to darken or lighten the color palette in the same way MS Office handles it.

Example: To use the default MS OFfice Accent colors as the plot line colors:

C = msocolor('Office');
axes('NextPlot','replacechildren','ColorOrder',C.AccentColors);
plot(rand(20,6));
legend show

Note that NextPlot property of the axes must be set to 'replacechildren' to change ColorOrder for subsequent plot command to keep the ColorOrder.

Please consult the command-window help text of MSOCOLOR ('help msocolor') for the detailed description of the function and its input argument options.

Cita come

Kesh Ikuma (2024). MSOCOLOR: Microsoft Office Theme Colors (https://www.mathworks.com/matlabcentral/fileexchange/35850-msocolor-microsoft-office-theme-colors), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2011b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su MATLAB Report Generator in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.5.0.0

Bug fixes

1.2.0.0

Added new calling option with which the color scheme of existing file can be retrieved rather than specifying the theme name.

1.1.0.0

* Compatibility fix for 2010b->2011b

1.0.0.0