共用方式為


Schema.ManifestLocation Property

Definition

Resource File Location

Represents the following attribute in the schema: sl:manifestLocation

[DocumentFormat.OpenXml.SchemaAttr(25, "manifestLocation")]
public DocumentFormat.OpenXml.StringValue ManifestLocation { get; set; }
public DocumentFormat.OpenXml.StringValue ManifestLocation { get; set; }
[DocumentFormat.OpenXml.SchemaAttr(25, "manifestLocation")]
public DocumentFormat.OpenXml.StringValue? ManifestLocation { get; set; }
[DocumentFormat.OpenXml.SchemaAttr("sl:manifestLocation")]
public DocumentFormat.OpenXml.StringValue? ManifestLocation { get; set; }
public DocumentFormat.OpenXml.StringValue? ManifestLocation { get; set; }
member this.ManifestLocation : DocumentFormat.OpenXml.StringValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr(25, "manifestLocation")>]
member this.ManifestLocation : DocumentFormat.OpenXml.StringValue with get, set
[<DocumentFormat.OpenXml.SchemaAttr("sl:manifestLocation")>]
member this.ManifestLocation : DocumentFormat.OpenXml.StringValue with get, set
Public Property ManifestLocation As StringValue

Property Value

Returns StringValue.

Attributes

Remarks

The following information from the ECMA International Standard ECMA-376 can be useful when working with this class.

Specifies the location of a resource file which should be downloaded and parsed when this document is loaded. The format and contents of this resource file are application-defined.

Consider a WordprocessingML document which contains custom XML markup in the http://www.contoso.com namespace, which is associated with a resource file located at http://www.contoso.com/resource.xml. The following content would be displayed in the document's schema library data:

<w:schemaLibrary>  
  <w:schema w:uri="http://www.contoso.com" w:manifestLocation= "http://www.contoso.com/resource.xml" />  
</w:schemaLibrary>  

The manifestLocation attribute contains http://www.contoso.com/manifest.xml which is the location of a resource file that may be downloaded for use when this namespace is used.

The possible values for this attribute are defined by the XML Schema string data type.

Applies to