Show / Hide Table of Contents

Class SignatureLineCollection

Collection of signaturelines

Inheritance
System.Object
SignatureLineCollection
Implements
System.Collections.Generic.IEnumerable<ExcelSignatureLineStamp>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml.Drawing
Assembly: EPPlus.dll
Syntax
public class SignatureLineCollection : IEnumerable<ExcelSignatureLineStamp>, IEnumerable

Properties

Item[Int32]

Index operator, returns by 0-based index

Declaration
public ExcelSignatureLineStamp this[int index] { get; set; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
ExcelSignatureLineStamp

Methods

Add()

Add an empty signatureLine to the worksheet

Declaration
public ExcelSignatureLine Add()
Returns
Type Description
ExcelSignatureLine

AddStamp()

Add an empty signatureLine Stamp to the worksheet

Declaration
public ExcelSignatureLineStamp AddStamp()
Returns
Type Description
ExcelSignatureLineStamp

Clear()

Clear the signature list.

Declaration
public void Clear()

GetEnumerator()

Get enumerator

Declaration
public IEnumerator<ExcelSignatureLineStamp> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<ExcelSignatureLineStamp>

GetSignatureLineById(Guid)

Get a signatureline by its id

Declaration
public ExcelSignatureLineStamp GetSignatureLineById(Guid id)
Parameters
Type Name Description
System.Guid id
Returns
Type Description
ExcelSignatureLineStamp

GetSignatureLines()

Get all signaturelines of line type

Declaration
public List<ExcelSignatureLine> GetSignatureLines()
Returns
Type Description
System.Collections.Generic.List<ExcelSignatureLine>

GetSignatureLineStamps()

Get all signaturelines of stamp type

Declaration
public List<ExcelSignatureLineStamp> GetSignatureLineStamps()
Returns
Type Description
System.Collections.Generic.List<ExcelSignatureLineStamp>

Remove(ExcelSignatureLineStamp)

Remove a signatureline from the collection.

Declaration
public void Remove(ExcelSignatureLineStamp sline)
Parameters
Type Name Description
ExcelSignatureLineStamp sline

Signature line to remove.

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
In This Article
Back to top Generated by DocFX