I'm trying to use VB.net to create an office word document -
Public Sub PrintDocument()
Dim oWord As Word.Application
Dim oDoc As Word.Document
'Start Word and open the document template.
oWord = CreateObject("Word.Application")
oWord.Visible = True
oDoc = oWord.Documents.Add
oDoc.Paragraphs.Format.Alignment = WdParagraphAlignment.wdAlignParagraphRight
oDoc.PageSetup.SectionDirection = WdSectionDirection.wdSectionDirectionRtl
Dim oParaName As Word.Paragraph = oDoc.Paragraphs.Add()
Dim oParaData As Word.Paragraph = oDoc.Paragraphs.Add()
Dim oParaIngr As Word.Paragraph = oDoc.Paragraphs.Add()
Dim oParaInst As Word.Paragraph = oDoc.Paragraphs.Add()
With oParaName
.Range.Font.Bold = True
.Range.Font.Underline = True
.Range.Font.Name = "David"
.Range.Font.Size = 24
.Range.Text = lblName.Text
.Format.RightIndent = True
.Format.SpaceAfter = 24 '24 pt spacing after paragraph.
.Range.InsertParagraphAfter()
End With
The code above works just fine when the text is in English, but if the text is in Hebrew some properties, such as the font size, have no effect. Looking at it within Word I can see that there are actually different settings for 'complex scripts' - how can I control these via code?
