Sort Score
Result 10 results
Languages All
Labels All
Results 691 - 700 of 21,720 for

docx

(0.06 sec)
  1. Convert Latex to Word in C#

    This guide covers how to convert Latex to Word in C#. It discusses the system configuration and stepwise process, along with a running sample code for Latex to Word conversion in C#....render the output in DOC or DOCX format. Code to Create TEX to...

    kb.aspose.com/pdf/net/convert-latex-to-word-in-...
  2. How to Find and Replace Text in Word Document u...

    In this short tutorial you will learn how to find and replace text in Word document using C#. In C# Word document replace text is possible using simple API calls for any of .NET based applications....In the above example using C# DOCX replace text is easily possible...

    kb.aspose.com/words/net/how-to-find-and-replace...
  3. XlsxSaveOptions | Aspose.Words for Java

    Can be used to specify additional options when saving a document into the SaveFormat.XLSX format in Java....docx"); XlsxSaveOptions xlsxSaveOptions...used when saving to a DOC or DOCX file. getUpdateAmbiguousTe()...

    reference.aspose.com/words/java/com.aspose.word...
  4. 请我如何给msword的每一页设置不同的页面(纸张方向) - Free Support For...

    我使用bulid进行了文档的嵌入 NodeCollection runs = mainDoc.getChildNodes(NodeType.PARAGRAPH, true); //获取所有节点 int dell = 0 ; for (int i = 0; i < runs.getCount(); i++) { Paragraph r = (Paragraph) runs.get(i); String text = r.…...docx"); DocumentBuilder builder =...LANDSCAPE); } } doc.save("output.docx"); 请尝试使用 builder.getCurrentSection()...

    forum.aspose.com/t/msword/310489
  5. Features List – Aspose.HTML for Python via .NET

    Learn about Aspose.HTML for Python via .NET features such as document manipulation, data extraction, conversion, platform independence, etc....Markdown and rendering to PDF, DOCX, XPS and Image file formats...EPUB, and MHTML to PDF, XPS, DOCX and raster image formats (PNG...

    docs.aspose.com/html/python-net/features-list/
  6. Table | Aspose.Words for .NET

    Create custom tables effortlessly with our intuitive Table Constructor. Build, customize, and optimize your data display in minutes!...docx" ); Shows how to build a nested...ArtifactsDir + "Table.CreateNestedTable.docx" ); } /// <summary> /// Creates...

    reference.aspose.com/words/net/aspose.words.tab...
  7. Convert HTML to MHTML – Aspose.HTML for Python ...

    Learn how to convert HTML to MHTML in Python. Consider the supported HTML to MHTML conversion scenarios and Python examples to illustrate them....{{/if_output}} {{#if_output 'DOCX'}} options = DocSaveOptions()...'TIFF' 'PDF' 'MHTML' 'MD' 'XPS' 'DOCX'}} # Convert HTML to {{output...

    docs.aspose.com/html/python-net/convert-html-to...
  8. How to Convert Word to PDF using C#

    This short tutorial guides on how to convert Word to PDF using C#. You can control the process of exporting Word to PDF in C# by setting the output PDF appearance and other properties while opening it in the browser or any other viewer....using C# by loading the source DOCX file and using the PdfSaveOptions...

    kb.aspose.com/words/net/how-to-convert-word-to-...
  9. How to Password Protect a Word Document in Python

    This tutorial is written to guide you on how to password protect a Word document in Python. It contains all the details required to configure the environment, step wise process to accomplish the task and a runnable sample code to lock Word document in Python....protect the Word files like DOCX , DOC , etc. in different ways...

    kb.aspose.com/words/python/how-to-password-prot...
  10. How to modify footnote content number style? - ...

    for (Paragraph paragraph : footnote.getParagraphs()) { for (Run run : paragraph.getRuns()) { run.getFont().setColor(Color.RED); } }...docx"); // Set the footnote numbering...document doc.save("ModifiedDocument.docx"); } } In this example, the...

    forum.aspose.com/t/how-to-modify-footnote-conte...