SignatureLine.ProviderId

SignatureLine.ProviderId property

Gets or sets the id of signature provider.

public Guid ProviderId { get; set; }

Remarks

It’s typically the CLSID of the provider com add-in.

Examples


[C#]
// Create signature line object
SignatureLine s2 = new SignatureLine();
s2.ProviderId = new Guid("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx");//The GUID should be obtained from the documentation shipped with the provider.

See Also