48 references to Framework
ReachFramework (48)
PrintConfig\PrintCapabilitesWriter.cs (34)
72
this._writer.WriteStartElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.PrintCapRoot, PrintSchemaNamespaces.
Framework
);
73
this._writer.WriteAttributeString(PrintSchemaPrefixes.xmlns, PrintSchemaPrefixes.Framework, null, PrintSchemaNamespaces.
Framework
);
156
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
157
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "copies");
158
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
159
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxCopies);
160
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minCopies);
161
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultCopies);
162
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Unconditional");
189
WriteProperty(PrintSchemaNamespaces.
Framework
, "IdentityOption", "True");
570
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
571
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "percent");
572
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
573
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxScale);
574
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minScale);
575
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultScale);
576
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
631
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "string");
632
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "base64");
633
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", base64DevMode);
634
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
635
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinLength", 0);
636
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxLength", maxDevModeSize);
647
this._writer.WriteStartElement(PrintSchemaTags.Framework.Feature, PrintSchemaNamespaces.
Framework
);
649
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "SelectionType", selectionTypeNamespace, selectionTypeName);
661
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterDef, PrintSchemaNamespaces.
Framework
);
673
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
685
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
752
this._writer.WriteStartElement(PrintSchemaTags.Framework.Property, PrintSchemaNamespaces.
Framework
);
763
this._writer.WriteStartElement(PrintSchemaTags.Framework.ScoredProperty, PrintSchemaNamespaces.
Framework
);
774
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
784
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
794
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterRef, PrintSchemaNamespaces.
Framework
);
803
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrintSchema.cs (1)
1965
" 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)
49
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
136
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
215
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
);