menu

WinUI

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Interface ICustomDocumentProperties - WinUI API Reference | Syncfusion

    Show / Hide Table of Contents

    Interface ICustomDocumentProperties

    Summary description for ICustomDocumentProperties.

    Namespace: Syncfusion.XlsIO
    Assembly: Syncfusion.XlsIO.NET.dll
    Syntax
    public interface ICustomDocumentProperties

    Properties

    Count

    Returns number of elements in the collection. Read-only.

    Declaration
    int Count { get; }
    Property Value
    Type
    System.Int32

    Item[Int32]

    Returns single entry from the collection. Read-only.

    Declaration
    IDocumentProperty this[int iIndex] { get; }
    Parameters
    Type Name Description
    System.Int32 iIndex
    Property Value
    Type
    IDocumentProperty

    Item[String]

    Returns single entry from the collection. Creates new entry if property with specified name is not found. Read-only.

    Declaration
    IDocumentProperty this[string strName] { get; }
    Parameters
    Type Name Description
    System.String strName
    Property Value
    Type
    IDocumentProperty

    Methods

    Clear()

    Removes all elements from the collection.

    Declaration
    void Clear()

    Contains(String)

    Checks whether collection contains property with specified name.

    Declaration
    bool Contains(string strName)
    Parameters
    Type Name Description
    System.String strName

    Name to check.

    Returns
    Type Description
    System.Boolean

    True if property is contained by collection; false otherwise.

    Remove(String)

    Removes specified object from the collection.

    Declaration
    void Remove(string strName)
    Parameters
    Type Name Description
    System.String strName

    Property name.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved