48 references to Framework
ReachFramework (48)
PrintConfig\PrintCapabilitesWriter.cs (34)
71
this._writer.WriteStartElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.PrintCapRoot, PrintSchemaNamespaces.
Framework
);
72
this._writer.WriteAttributeString(PrintSchemaPrefixes.xmlns, PrintSchemaPrefixes.Framework, null, PrintSchemaNamespaces.
Framework
);
155
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
156
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "copies");
157
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
158
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxCopies);
159
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minCopies);
160
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultCopies);
161
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Unconditional");
188
WriteProperty(PrintSchemaNamespaces.
Framework
, "IdentityOption", "True");
569
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
570
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "percent");
571
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
572
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxScale);
573
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minScale);
574
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultScale);
575
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
630
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "string");
631
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "base64");
632
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", base64DevMode);
633
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
634
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinLength", 0);
635
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxLength", maxDevModeSize);
646
this._writer.WriteStartElement(PrintSchemaTags.Framework.Feature, PrintSchemaNamespaces.
Framework
);
648
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "SelectionType", selectionTypeNamespace, selectionTypeName);
660
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterDef, PrintSchemaNamespaces.
Framework
);
672
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
684
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
751
this._writer.WriteStartElement(PrintSchemaTags.Framework.Property, PrintSchemaNamespaces.
Framework
);
762
this._writer.WriteStartElement(PrintSchemaTags.Framework.ScoredProperty, PrintSchemaNamespaces.
Framework
);
773
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
783
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
793
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterRef, PrintSchemaNamespaces.
Framework
);
802
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrintSchema.cs (1)
1964
" xmlns:" + PrintSchemaPrefixes.Framework + "=\"" + PrintSchemaNamespaces.
Framework
+ "\"" +
PrintConfig\PrintSchemaShim.cs (3)
127
XmlElement parameterInitElem = ticket.XmlDoc.CreateElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
135
XmlElement valueElem = ticket.XmlDoc.CreateElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
152
string psfPrefix = EnsurePrefixForTicket(ticket, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrtCap_Reader.cs (3)
48
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
135
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
214
if (URI == PrintSchemaNamespaces.
Framework
)
PrintConfig\PrtTicket_Editor.cs (6)
41
if ((root.NamespaceURI != PrintSchemaNamespaces.
Framework
) ||
96
if (rootChild.NamespaceURI == PrintSchemaNamespaces.
Framework
)
250
(child.NamespaceURI != PrintSchemaNamespaces.
Framework
))
314
(child.NamespaceURI != PrintSchemaNamespaces.
Framework
))
356
string prefix = pt.XmlDoc.DocumentElement.GetPrefixOfNamespace(PrintSchemaNamespaces.
Framework
);
358
XmlElement newNode = pt.XmlDoc.CreateElement(prefix, schemaTag, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrtTicket_Public.cs (1)
625
_nsMgr.AddNamespace(PrintSchemaPrefixes.Framework, PrintSchemaNamespaces.
Framework
);