@ Vidhi: I want to write the results as a table in Excel sheet via MATLAB programming (using xlswrite() function) at the first step. Then, I would like to highlight (or make it bold) a specific row of this table by writing a code in MATLAB. Just this!
@ Vsevolod and Pedro: Many thanks for your worthwhile answers but unfortunately, I cannot open the mathworks pages and thus I would be grateful if you briefly explain how I can use ActiveX and find a solution for this problem.
I attach the above mentioned example from Mathworks.
Look at it - the main idea - You have access to all properties and methods of Excel objects. If You don't know the name of the property - You can record macros in Excel and see it.
Hi, below I copied an example (from one of my book in Chinese).
This example shows how to open excel server, active one sheet and select a cell, output a picture to a cell, and draw graphs using data in excel.
Your task can be done similarly. Hope it helps.
Btw, if you just don't know which children-object of a specific parent you should use, you can use get function to list all their features. Also, you can simple finish your task first directly using excel but in the same time you should record the macro in excel. then you can see the VB codes of the macro corrponds to the processes you've done. And finally you can just type codes in MATLAB according to the VB codes.
note #2: the following codes can work well in MATLAB R2014b and newer version. I don't check it using older versions.
note #3: in following codes, the annotations are give in Chinese. sorry that I did not translate them. But you can just leave it and go through those codes.