Skip to content

Commit bee1a3f

Browse files
Updates
1 parent ebd8e5f commit bee1a3f

File tree

36 files changed

+345
-166
lines changed
  • content/english/net
    • advanced-features
      • create-stream-provider-dotnet-aspose-html
      • generate-encrypted-pdf-by-pdfdevice-dotnet-aspose-html
      • use-extended-content-property-dotnet-aspose-html
    • canvas-and-image-manipulation
      • convert-svg-to-image-dotnet-aspose-html
      • convert-svg-to-pdf-dotnet-aspose-html
      • convert-svg-to-xps-dotnet-aspose-html
      • manipulating-canvas-dotnet-aspose-html
    • generate-jpg-and-png-images
      • generate-jpg-images-by-imagedevice-dotnet-aspose-html
      • generate-png-images-by-imagedevice-dotnet-aspose-html
    • html-document-manipulation
      • generate-xps-documents-by-xpsdevice-dotnet-aspose-html
      • load-html-doc-asynchronously-dotnet-aspose-html
      • merge-html-with-json-dotnet-aspose-html
      • merge-html-with-xml-dotnet-aspose-html
    • html-extensions-and-conversions
      • convert-epub-to-image-dotnet-aspose-html
      • convert-epub-to-pdf-dotnet-aspose-html
      • convert-epub-to-xps-dotnet-aspose-html
      • convert-html-to-bmp-dotnet-aspose-html
      • convert-html-to-doc-docx-dotnet-aspose-html
      • convert-html-to-gif-dotnet-aspose-html
      • convert-html-to-jpeg-dotnet-aspose-html
      • convert-html-to-markdown-dotnet-aspose-html
      • convert-html-to-mhtml-dotnet-aspose-html
      • convert-html-to-pdf-dotnet-aspose-html
      • convert-html-to-png-dotnet-aspose-html
      • convert-html-to-tiff-dotnet-aspose-html
      • convert-html-to-xps-dotnet-aspose-html
    • licensing-and-initialization/apply-metered-license-dotnet-aspose-html
    • rendering-html-documents
      • render-epub-as-xps-dotnet-aspose-html
      • render-html-as-png-dotnet-aspose-html
      • render-mhtml-as-xps-dotnet-aspose-html
      • render-multiple-documents-dotnet-aspose-html
      • render-svg-doc-as-png-dotnet-aspose-html
      • rendering-timeout-dotnet-aspose-html
    • working-with-html-documents

36 files changed

+345
-166
lines changed

content/english/net/advanced-features/create-stream-provider-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ url: /net/advanced-features/create-stream-provider-dotnet-aspose-html/
1414
{
1515
// ExStart:1
1616
// The path to the documents directory
17-
string dataDir = RunExamples.GetDataDir_Data();
17+
string dataDir = "Your Data Directory";
1818
// Create a custom StreamProvider based on ICreateStreamProvider interface
1919
using (MemoryStreamProvider streamProvider = new MemoryStreamProvider())
2020
{

content/english/net/advanced-features/generate-encrypted-pdf-by-pdfdevice-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ url: /net/advanced-features/generate-encrypted-pdf-by-pdfdevice-dotnet-aspose-ht
1313
public static void Run()
1414
{
1515
// ExStart:1
16-
string dataDir = RunExamples.GetDataDir_Data();
16+
string dataDir = "Your Data Directory";
1717
using (var document = new Aspose.Html.HTMLDocument("<style>p { color: green; }</style><p>my first paragraph</p>", @"c:\work\"))
1818
{
1919
var options = new PdfRenderingOptions()

content/english/net/advanced-features/use-extended-content-property-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ url: /net/advanced-features/use-extended-content-property-dotnet-aspose-html/
1313
public static void Run()
1414
{
1515
// ExStart:1
16-
string dataDir = RunExamples.GetDataDir_Data();
16+
string dataDir = "Your Data Directory";
1717
// Initialize configuration object and set up the page-margins for the document
1818
Configuration configuration = new Configuration();
1919
configuration.GetService<IUserAgentService>().UserStyleSheet = @"

content/english/net/canvas-and-image-manipulation/convert-svg-to-image-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ url: /net/canvas-and-image-manipulation/convert-svg-to-image-dotnet-aspose-html/
1414
{
1515
// ExStart:1
1616
// The path to the documents directory
17-
string dataDir = RunExamples.GetDataDir_Data();
17+
string dataDir = "Your Data Directory";
1818
// Source SVG document
1919
SVGDocument svgDocument = new SVGDocument(dataDir + "input.svg");
2020
// Initialize ImageSaveOptions

content/english/net/canvas-and-image-manipulation/convert-svg-to-pdf-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ url: /net/canvas-and-image-manipulation/convert-svg-to-pdf-dotnet-aspose-html/
1414
{
1515
// ExStart:1
1616
// The path to the documents directory
17-
string dataDir = RunExamples.GetDataDir_Data();
17+
string dataDir = "Your Data Directory";
1818
// Source SVG document
1919
SVGDocument svgDocument = new SVGDocument(dataDir + "input.svg");
2020
// Initialize pdfSaveOptions

content/english/net/canvas-and-image-manipulation/convert-svg-to-xps-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ url: /net/canvas-and-image-manipulation/convert-svg-to-xps-dotnet-aspose-html/
1414
{
1515
// ExStart:1
1616
// The path to the documents directory
17-
string dataDir = RunExamples.GetDataDir_Data();
17+
string dataDir = "Your Data Directory";
1818
// Source SVG document
1919
SVGDocument svgDocument = new SVGDocument(dataDir + "input.svg");
2020
// Initialize XpsSaveOptions

content/english/net/canvas-and-image-manipulation/manipulating-canvas-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ url: /net/canvas-and-image-manipulation/manipulating-canvas-dotnet-aspose-html/
1414
{
1515
// ExStart:ManipulateCanvas
1616
// The path to the documents directory.
17-
string dataDir = RunExamples.GetDataDir_Data();
17+
string dataDir = "Your Data Directory";
1818
// Create an empty document
1919
using (HTMLDocument document = new HTMLDocument())
2020
{

content/english/net/generate-jpg-and-png-images/generate-jpg-images-by-imagedevice-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ url: /net/generate-jpg-and-png-images/generate-jpg-images-by-imagedevice-dotnet-
1313
public static void Run()
1414
{
1515
// ExStart:1
16-
string dataDir = RunExamples.GetDataDir_Data();
16+
string dataDir = "Your Data Directory";
1717
using (var document = new Aspose.Html.HTMLDocument("<style>p { color: green; }</style><p>my first paragraph</p>", @"c:\work\"))
1818
{
1919
// Initialize rendering optionss and set jpeg as output format

content/english/net/generate-jpg-and-png-images/generate-png-images-by-imagedevice-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ url: /net/generate-jpg-and-png-images/generate-png-images-by-imagedevice-dotnet-
1313
public static void Run()
1414
{
1515
// ExStart:1
16-
string dataDir = RunExamples.GetDataDir_Data();
16+
string dataDir = "Your Data Directory";
1717
using (var document = new Aspose.Html.HTMLDocument("<style>p { color: green; }</style><p>my first paragraph</p>", @"c:\work\"))
1818
{
1919
using (ImageDevice device = new ImageDevice(dataDir + @"document_out.png"))

content/english/net/html-document-manipulation/generate-xps-documents-by-xpsdevice-dotnet-aspose-html/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ url: /net/html-document-manipulation/generate-xps-documents-by-xpsdevice-dotnet-
1313
public static void Run()
1414
{
1515
// ExStart:1
16-
string dataDir = RunExamples.GetDataDir_Data();
16+
string dataDir = "Your Data Directory";
1717
using (var document = new Aspose.Html.HTMLDocument("<style>p { color: green; }</style><p>my first paragraph</p>", @"c:\work\"))
1818
{
1919
using (XpsDevice device = new XpsDevice(new XpsRenderingOptions()

0 commit comments

Comments
 (0)