Show / Hide Table of Contents

Class SignatureLineCollection

Collection of signaturelines

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

Properties

this[int]

Index operator, returns by 0-based index

Declaration
public ExcelSignatureLineStamp this[int index] { get; set; }
Parameters
Type Name Description
int 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
IEnumerator<ExcelSignatureLineStamp>

GetSignatureLineById(Guid)

Get a signatureline by its id

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

GetSignatureLineStamps()

Get all signaturelines of stamp type

Declaration
public List<ExcelSignatureLineStamp> GetSignatureLineStamps()
Returns
Type Description
List<ExcelSignatureLineStamp>

GetSignatureLines()

Get all signaturelines of line type

Declaration
public List<ExcelSignatureLine> GetSignatureLines()
Returns
Type Description
List<ExcelSignatureLine>

Remove(ExcelSignatureLineStamp)

Remove a signatureline from the collection.

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

Signature line to remove.

Implements

IEnumerable<T>
IEnumerable
In this article
Back to top Generated by DocFX