This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET | |
| // The path to the documents directory. | |
| string dataDir = RunExamples.GetDataDir_LINQ(); | |
| string fileName = "BubbleChart.docx"; | |
| // Load the template document. | |
| Document doc = new Document(dataDir + fileName); | |
| // Create a Reporting Engine. | |
| ReportingEngine engine = new ReportingEngine(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java | |
| DocumentBuilder builder = new DocumentBuilder(); | |
| Field field = builder.insertField("=1", null); | |
| field.setLocaleId(1027); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Examples-VisualBasic |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Examples-CSharp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aspose.Words-for-Cloud |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aspose.Words-for-Android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aspose.Words-for-Android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aspose.Words-for-Cloud-for-Ruby |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Cloud | |
| try { | |
| // Instantiate Aspose Storage API SDK | |
| StorageApi storageApi = new StorageApi(Configuration.apiKey, Configuration.appSID, true); | |
| // Instantiate Aspose Words API SDK | |
| WordsApi wordsApi = new WordsApi(Configuration.apiKey, Configuration.appSID, true); | |
| // set input file name | |
| String fileName = "SampleWordDocument.docx"; | |
| String storage = null; | |
| String folder = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asposewordscloud | |
| from asposewordscloud.WordsApi import WordsApi | |
| from asposewordscloud.WordsApi import RevisionsModificationResponse | |
| import asposestoragecloud | |
| from asposestoragecloud.StorageApi import StorageApi | |
| from asposestoragecloud.StorageApi import ResponseMessage | |
| apiKey = "XXXXX" #sepcify App Key |
OlderNewer