Skip to content

bb8d8333 8391 64ab 3dc1 c56f4ff2b306

Fernando Garcia edited this page May 8, 2018 · 1 revision

XsltModel.File Property

Additional header content

Gets or sets the xslt file. To specify a relative path use the character (~).

Namespace: iTin.Export.Model
Assembly: iTin.Export.Core (in iTin.Export.Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#

public string File { get; set; }

VB

Public Property File As String
	Get
	Set

Property Value

Type: String
The xslt file. To specify a relative path use the character (~).

Exceptions

 

Exception Condition
ArgumentNullException If value is null.
InvalidPathNameException If value is an invalid path name.

Remarks

ITEE Object Element Usage

<Xslt>
  <File>string</Path>
</Xslt>

Examples

The following example show how to use this element. XML

<?xml version="1.0" encoding="utf-8"?>

<Exports xmlns="http://schemas.iTin.com/export/engine/2013/configuration">
  <Export Name="Test" Current="Yes">
    <Description>Sample Export</Description>
    <Table Name="R740D01">
      <Exporter>
        <Xslt/>
          <File>~\Templates\TransformFile.xslt</File>
        </Xslt>
      </Exporter>

      <Output>
        <File>SampleExport</File>
        <Path>~\Samples\Output\Writers</Path>
      </Output>
    </Table>
  </Export>
</Exports>

See Also

Reference

XsltModel Class
iTin.Export.Model Namespace

Clone this wiki locally