48 references to Framework
ReachFramework (48)
PrintConfig\PrintCapabilitesWriter.cs (34)
70
this._writer.WriteStartElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.PrintCapRoot, PrintSchemaNamespaces.
Framework
);
71
this._writer.WriteAttributeString(PrintSchemaPrefixes.xmlns, PrintSchemaPrefixes.Framework, null, PrintSchemaNamespaces.
Framework
);
154
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
155
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "copies");
156
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
157
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxCopies);
158
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minCopies);
159
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultCopies);
160
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Unconditional");
187
WriteProperty(PrintSchemaNamespaces.
Framework
, "IdentityOption", "True");
568
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
569
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "percent");
570
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
571
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxScale);
572
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minScale);
573
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultScale);
574
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
629
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "string");
630
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "base64");
631
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", base64DevMode);
632
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
633
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinLength", 0);
634
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxLength", maxDevModeSize);
645
this._writer.WriteStartElement(PrintSchemaTags.Framework.Feature, PrintSchemaNamespaces.
Framework
);
647
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "SelectionType", selectionTypeNamespace, selectionTypeName);
659
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterDef, PrintSchemaNamespaces.
Framework
);
671
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
683
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
750
this._writer.WriteStartElement(PrintSchemaTags.Framework.Property, PrintSchemaNamespaces.
Framework
);
761
this._writer.WriteStartElement(PrintSchemaTags.Framework.ScoredProperty, PrintSchemaNamespaces.
Framework
);
772
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
782
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
792
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterRef, PrintSchemaNamespaces.
Framework
);
801
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrintSchema.cs (1)
1967
" xmlns:" + PrintSchemaPrefixes.Framework + "=\"" + PrintSchemaNamespaces.
Framework
+ "\"" +
PrintConfig\PrintSchemaShim.cs (3)
128
XmlElement parameterInitElem = ticket.XmlDoc.CreateElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
136
XmlElement valueElem = ticket.XmlDoc.CreateElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
153
string psfPrefix = EnsurePrefixForTicket(ticket, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrtCap_Reader.cs (3)
50
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
137
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
216
if (URI == PrintSchemaNamespaces.
Framework
)
PrintConfig\PrtTicket_Editor.cs (6)
42
if ((root.NamespaceURI != PrintSchemaNamespaces.
Framework
) ||
97
if (rootChild.NamespaceURI == PrintSchemaNamespaces.
Framework
)
251
(child.NamespaceURI != PrintSchemaNamespaces.
Framework
))
315
(child.NamespaceURI != PrintSchemaNamespaces.
Framework
))
357
string prefix = pt.XmlDoc.DocumentElement.GetPrefixOfNamespace(PrintSchemaNamespaces.
Framework
);
359
XmlElement newNode = pt.XmlDoc.CreateElement(prefix, schemaTag, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrtTicket_Public.cs (1)
626
_nsMgr.AddNamespace(PrintSchemaPrefixes.Framework, PrintSchemaNamespaces.
Framework
);