48 references to Framework
ReachFramework (48)
PrintConfig\PrintCapabilitesWriter.cs (34)
67
this._writer.WriteStartElement(PrintSchemaPrefixes.Framework, PrintSchemaTags.Framework.PrintCapRoot, PrintSchemaNamespaces.
Framework
);
68
this._writer.WriteAttributeString(PrintSchemaPrefixes.xmlns, PrintSchemaPrefixes.Framework, null, PrintSchemaNamespaces.
Framework
);
151
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
152
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "copies");
153
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
154
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxCopies);
155
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minCopies);
156
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultCopies);
157
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Unconditional");
184
WriteProperty(PrintSchemaNamespaces.
Framework
, "IdentityOption", "True");
565
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "integer");
566
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "percent");
567
WriteProperty(PrintSchemaNamespaces.
Framework
, "Multiple", 1);
568
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxValue", maxScale);
569
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinValue", minScale);
570
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", defaultScale);
571
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
626
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "DataType", PrintSchemaNamespaces.xsd, "string");
627
WriteProperty(PrintSchemaNamespaces.
Framework
, "UnitType", "base64");
628
WriteProperty(PrintSchemaNamespaces.
Framework
, "DefaultValue", base64DevMode);
629
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "Mandatory", PrintSchemaNamespaces.StandardKeywordSet, "Optional");
630
WriteProperty(PrintSchemaNamespaces.
Framework
, "MinLength", 0);
631
WriteProperty(PrintSchemaNamespaces.
Framework
, "MaxLength", maxDevModeSize);
642
this._writer.WriteStartElement(PrintSchemaTags.Framework.Feature, PrintSchemaNamespaces.
Framework
);
644
WriteQNameProperty(PrintSchemaNamespaces.
Framework
, "SelectionType", selectionTypeNamespace, selectionTypeName);
656
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterDef, PrintSchemaNamespaces.
Framework
);
668
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
680
this._writer.WriteStartElement(PrintSchemaTags.Framework.Option, PrintSchemaNamespaces.
Framework
);
747
this._writer.WriteStartElement(PrintSchemaTags.Framework.Property, PrintSchemaNamespaces.
Framework
);
758
this._writer.WriteStartElement(PrintSchemaTags.Framework.ScoredProperty, PrintSchemaNamespaces.
Framework
);
769
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
779
this._writer.WriteStartElement(PrintSchemaTags.Framework.Value, PrintSchemaNamespaces.
Framework
);
789
this._writer.WriteStartElement(PrintSchemaTags.Framework.ParameterRef, PrintSchemaNamespaces.
Framework
);
798
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
);