With a minor modification of winim/clr (v3.7.2), to call methods with 
parameters that have default values will be easier.
    
    
    import winim/clr
    
    var
      Words = load("Xceed.Words.NET.dll")
      Document = load("Xceed.Document.NET.dll")
      DocX = Words.GetType("Xceed.Words.NET.DocX")
    
    var doc = @DocX.Create("test.docx")
    var p = doc.InsertParagraph()
    p.Append("Hello World").Font("Arial Black")
    doc.Save()
    
    
    Run

Reply via email to