48 references to Framework
ReachFramework (48)
PrintConfig\PrintCapabilitesWriter.cs (34)
73
this._writer.WriteStartElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.PrintCapRoot, PrintSchemaNamespaces.
Framework
);
74
this._writer.WriteAttributeString(PrintSchemaPrefixes.xmlns, PrintSchemaPrefixes.Framework, null, PrintSchemaNamespaces.
Framework
);
157
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
158
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "copies");
159
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
160
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxCopies);
161
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minCopies);
162
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultCopies);
163
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Unconditional");
190
WriteProperty(PrintSchemaNamespaces.
Framework
, "IdentityOption", "True");
571
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
572
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "percent");
573
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
574
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxScale);
575
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minScale);
576
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultScale);
577
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
632
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "string");
633
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "base64");
634
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", base64DevMode);
635
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
636
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinLength", 0);
637
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxLength", maxDevModeSize);
648
this._writer.WriteStartElement(PrintSchemaTags.Framework.Feature, PrintSchemaNamespaces.
Framework
);
650
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "SelectionType", selectionTypeNamespace, selectionTypeName);
662
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterDef, PrintSchemaNamespaces.
Framework
);
674
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
686
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
753
this._writer.WriteStartElement(PrintSchemaTags.Framework.Property, PrintSchemaNamespaces.
Framework
);
764
this._writer.WriteStartElement(PrintSchemaTags.Framework.ScoredProperty, PrintSchemaNamespaces.
Framework
);
775
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
785
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
795
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterRef, PrintSchemaNamespaces.
Framework
);
804
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrintSchema.cs (1)
1970
" xmlns:" + PrintSchemaPrefixes.Framework + "=\"" + PrintSchemaNamespaces.
Framework
+ "\"" +
PrintConfig\PrintSchemaShim.cs (3)
132
XmlElement parameterInitElem = ticket.XmlDoc.CreateElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.ParameterInit, PrintSchemaNamespaces.
Framework
);
140
XmlElement valueElem = ticket.XmlDoc.CreateElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
157
string psfPrefix = EnsurePrefixForTicket(ticket, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrtCap_Reader.cs (3)
55
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
142
(_xmlReader.NamespaceURI != PrintSchemaNamespaces.
Framework
))
221
if (URI == PrintSchemaNamespaces.
Framework
)
PrintConfig\PrtTicket_Editor.cs (6)
49
if ((root.NamespaceURI != PrintSchemaNamespaces.
Framework
) ||
104
if (rootChild.NamespaceURI == PrintSchemaNamespaces.
Framework
)
258
(child.NamespaceURI != PrintSchemaNamespaces.
Framework
))
322
(child.NamespaceURI != PrintSchemaNamespaces.
Framework
))
364
string prefix = pt.XmlDoc.DocumentElement.GetPrefixOfNamespace(PrintSchemaNamespaces.
Framework
);
366
XmlElement newNode = pt.XmlDoc.CreateElement(prefix, schemaTag, PrintSchemaNamespaces.
Framework
);
PrintConfig\PrtTicket_Public.cs (1)
632
_nsMgr.AddNamespace(PrintSchemaPrefixes.Framework, PrintSchemaNamespaces.
Framework
);