SignEvent.ReturnStatus Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém ou define o retorno status do OnSign evento.
public:
property bool ReturnStatus { bool get(); void set(bool value); };
public bool ReturnStatus { get; set; }
member this.ReturnStatus : bool with get, set
Public Property ReturnStatus As Boolean
Valor da propriedade
Implementações
Exemplos
No exemplo a seguir, se a propriedade ReturnStatus estiver definida como false no manipulador de eventos OnSign , o Assistente de Assinaturas Digitais será exibido novamente para adicionar outra assinatura ao conjunto de dados que pode ser assinado. Para o primeiro conjunto de dados que pode ser assinado, se três assinaturas já existirem, o manipulador de eventos Do OnSign sairá com a propriedade ReturnStatus definida como true, que fecha o Assistente de Assinaturas Digitais e exibe um alerta:
[InfoPathEventHandler(EventType=InfoPathEventType.OnSign)]
public void OnSign(SignEvent e)
{
Signature thisSignature = e.SignedDataBlock.Signatures.Create();
// check if the current signed data block is the first signed data block in list
// if it is the first signed data block, then do special handling
// else use the default handler (triggered by e.ReturnStatus = false)
if ( e.SignedDataBlock.Name == thisXDocument.SignedDataBlocks[0].Name )
{
// check the number of signatures in the first signed data block
// if there are three signatures, don’t add another signature and set ReturnStatus to true)
// else add the signature (use the Sign() method to show the wizard) and don’t do anything else (ReturnStatus is true)
if ( thisXDocument.SignedDataBlocks[0].Signatures.Count > 3 )
{
thisXDocument.UI.Alert("Only 3 signatures are allowed on this set of data : " + e.SignedDataBlock.Name );
e.<span class="label">ReturnStatus</span> = true;
}
else
{
thisSignature.Sign();
e.<span class="label">ReturnStatus</span> = true;
}
}
else
{
e.<span class="label">ReturnStatus</span> = false;
}
}
Comentários
Se a propriedade ReturnStatus do SignEventObject objeto for definida como false, a caixa de diálogo Assistente de Assinatura Digital será exibida até que o usuário saia da caixa de diálogo.