chetan Allipur

chetan Allipur

  • NA
  • 541
  • 158.3k

Convert it to VBA to C#

Jun 28 2017 3:14 AM
This is VBA Code
 
Selection.Tables(1).Rows(1).HeadingFormat = True  
 
I did like this in c#
 
wordsec.Tables[1].Rows[1].HeadingFormat = 0; 
 
But problem is HeadingFormat taking int type not bool
 
can you anyone solve this issue? 

Answers (2)