How to Apply Numbering to Heading Titles in Word through actxserver
7 次查看(过去 30 天)
显示 更早的评论
I am creating a MS word document through actxserver, i have created so Heading in the word using the following code.
word = actxserver('Word.Application'); % Start Word
document = word.Documents.Add; % Create new Document
selection = word.Selection; % Set Cursor
selection.Style = word.ActiveDocument.Styles.Item('Heading 1');
selection.Font.Bold = 1;
selection.Font.Size = 16;
selection.TypeText('Heading 1');
selection.TypeParagraph;
selection.Style = word.ActiveDocument.Styles.Item('Heading 2');
selection.Font.Bold = 1;
selection.Font.Size = 14;
selection.TypeText(GroupName);
selection.TypeParagraph;
In the word documetn it will appear as -
Heading 1
Heading 2
Now i want to add numbering to the Heading in the Word Document through List Format -
selection.Range.ListFormat.ApplyNumberDefault(1);
But i unable to acheive the desired format as -
1. Heading 1
1.1 Heading 2
when i look up the excel sheet objects -
where as in the MATLAB prompt -
So i want to achieve the following List Format -
- ListLevelNumber controlled through MATLAB code
- ListString controlled through MATLAB code
I have tried many ways using the -
word.ActiveDocument.ListTemplates
Is there any way to get this Headings along with number MATLAB code.
4 个评论
Guillaume
2019-8-13
There are two parts to your question:
1) Knowing which Word functions/properties to use to do what you want. This is a question better asked on an Office/Word forum. I don't kniow the Word API well enough to help you there.
2) Coding that into matlab, we can certainly help there once you've got step 1 answered.
If you have VBA (or other language) code that does what you need, then we can translate that.
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!