using System;
using System.Collections.Generic;
using System.Text;
namespace AnotherPDFLib.XFA
{
///
/// An automation element that contains a script.
///
public class script : eventAction
{
public script() : base("script") { }
public string binding
{
set
{
this.SetAttribute("binding", value);
}
}
public string contentType
{
set
{
this.SetAttribute("contentType", value);
}
}
public runAt runAt
{
set
{
this.SetAttribute("runAt", value);
}
}
public bool stateless
{
set
{
this.SetAttribute("stateless", value);
}
}
public string name
{
set
{
this.SetAttribute("name", value);
}
}
public string value
{
get
{
return this.Value;
}
set
{
this.Value = value;
}
}
}
}