Learn how to Create Gantt Chart in Excel using Python
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
// Set the path to the documents directory. | |
string dataDir = "files"; | |
// Create an instance of the Map class. | |
using (var map = new Aspose.Gis.Rendering.Map(600, 300)) | |
{ | |
// Use the specified SRS. | |
map.SpatialReferenceSystem = Aspose.Gis.SpatialReferencing.SpatialReferenceSystem.Wgs84; | |
// Use the specified style to draw lines. | |
var symbolizer = new Aspose.Gis.Rendering.Symbolizers.SimpleLine() { Width = Aspose.Gis.Rendering.Measurement.Pixels(1) }; | |
// Open a layer and add to the map. |
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
using Aspose.Gis; | |
// The path to the documents directory. | |
string dataDir = "data"; | |
// Initialize an object of the Map class. | |
using (var map = new Aspose.Gis.Rendering.Map(800, 400)) | |
{ | |
// Define the spatial reference system. | |
map.SpatialReferenceSystem = Aspose.Gis.SpatialReferencing.SpatialReferenceSystem.Wgs84; | |
// Use the specified style to draw lines. | |
var symbolizer = new Aspose.Gis.Rendering.Symbolizers.SimpleLine() { Width = Aspose.Gis.Rendering.Measurement.Pixels(2) }; |
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
using Aspose.Slides; | |
namespace CSharp.Presentations.Conversion | |
{ | |
class PPTXtoEMF | |
{ | |
static void Main() | |
{ | |
// The path to the documents directory. | |
string dataDir = "data"; | |
string resultPath = dataDir + "result.emf"; |
Learn how to Read and View a DICOM File in C#
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
using Aspose.Slides; | |
using Aspose.Slides.Export; | |
namespace CSharp.Presentations.Conversion | |
{ | |
class ODPToPPTX | |
{ | |
static void Main() | |
{ | |
// The path to the documents directory. |
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
using Aspose.Slides; | |
using Aspose.Slides.Export; | |
namespace CSharp.Presentations.Conversion | |
{ | |
class ODPToPPTX | |
{ | |
static void Main() | |
{ | |
// Define the path to the documents directory. |
Learn how to create a DICOM file programmatically in C#
Learn how to Extract Pages from Word in Python
NewerOlder