TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
chetan Allipur
NA
541
167.5k
How to get current document styles from word document?
Jul 11 2018 11:54 PM
Hi
I want current styles in word document. But I am getting all word styles. Below is my code
foreach (Microsoft.Office.Interop.Word.Style styles in doc1.Styles)
{
if (styles.BuiltIn == true)
{
GetWordStyles.Add(styles.NameLocal);
}
else
{
GetCustomStyles.Add(styles.NameLocal);
}
}
Please anyone help me
Reply
Answers (
3
)
number formate takes custom insted of currency type
Why do we need Destructor when we have Garbage collector.c#