/GTameReport/Samples/ExampleProject/disassembler/GTameReport.CS/Full/Rdl/PageHeaderFooterType.cs

# · C# · 75 lines · 65 code · 10 blank · 0 comment · 0 complexity · a4bb93389e20d124ed8e4ce2d0fd1f34 MD5 · raw file

  1. using System.CodeDom.Compiler;
  2. using System.ComponentModel;
  3. using System.Diagnostics;
  4. using System.Xml;
  5. using System.Xml.Serialization;
  6. namespace Rdl
  7. {
  8. [System.Serializable]
  9. [System.Diagnostics.DebuggerStepThrough]
  10. [System.CodeDom.Compiler.GeneratedCode("xsd", "2.0.50727.42")]
  11. [System.ComponentModel.DesignerCategory("code")]
  12. [System.Xml.Serialization.XmlType(Namespace = "http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition")]
  13. public class PageHeaderFooterType
  14. {
  15. private System.Xml.XmlAttribute[] anyAttrField;
  16. private Rdl.ItemsChoiceType34[] itemsElementNameField;
  17. private object[] itemsField;
  18. [System.Xml.Serialization.XmlAnyAttribute]
  19. public System.Xml.XmlAttribute[] AnyAttr
  20. {
  21. get
  22. {
  23. return anyAttrField;
  24. }
  25. set
  26. {
  27. anyAttrField = value;
  28. }
  29. }
  30. [System.Xml.Serialization.XmlElement("ReportItems", typeof(Rdl.ReportItemsType))]
  31. [System.Xml.Serialization.XmlElement("Height", typeof(System.String), DataType = "normalizedString")]
  32. [System.Xml.Serialization.XmlAnyElement]
  33. [System.Xml.Serialization.XmlElement("Style", typeof(Rdl.StyleType))]
  34. [System.Xml.Serialization.XmlChoiceIdentifier("ItemsElementName")]
  35. [System.Xml.Serialization.XmlElement("PrintOnFirstPage", typeof(System.Boolean))]
  36. [System.Xml.Serialization.XmlElement("PrintOnLastPage", typeof(System.Boolean))]
  37. public object[] Items
  38. {
  39. get
  40. {
  41. return itemsField;
  42. }
  43. set
  44. {
  45. itemsField = value;
  46. }
  47. }
  48. [System.Xml.Serialization.XmlIgnore]
  49. [System.Xml.Serialization.XmlElement("ItemsElementName")]
  50. public Rdl.ItemsChoiceType34[] ItemsElementName
  51. {
  52. get
  53. {
  54. return itemsElementNameField;
  55. }
  56. set
  57. {
  58. itemsElementNameField = value;
  59. }
  60. }
  61. public PageHeaderFooterType()
  62. {
  63. }
  64. } // class PageHeaderFooterType
  65. }