[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISignature.SignatureLineShape

SignatureLineShape Property

SignatureLineShape

Gets the IShape object associated with an ISignature object that is a signature line.

Use this property when you need to work with the signature line as a shape, for example to move, copy, or delete the visible signature line. This property is read-only.

Declaration
IShape SignatureLineShape { get; }
ReadOnly Property SignatureLineShape As IShape
Examples
ISignature signature = workbook.Signatures.AddSignatureLine(worksheet, 100.0, 50.0);
IShape shape = signature.SignatureLineShape;
shape.Top = shape.Top + 20;