Class MetaProperties
Represents a collection of properties describing the metadata stored in a document.
Inheritance
System.Object
MetaProperties
Namespace: Syncfusion.Office
Assembly: Syncfusion.Compression.NET.dll
Syntax
public class MetaProperties : Object
Properties
Count
Gets the number of items in the collection.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The integer that specifies the count of items. |
Item[Int32]
Gets the MetaProperty at the specified index.
Declaration
public MetaProperty this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The integer that represents the position of the metadata property in the document to get. |
Property Value
Type | Description |
---|---|
MetaProperty | The MetaProperty at the specified index. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException | The index is not valid in the MetaProperties |
Methods
FindByName(String)
Finds a metadata property in the collection with specified display name.
Declaration
public MetaProperty FindByName(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name |
Returns
Type |
---|
MetaProperty |