...
Argument | Description |
---|---|
DrawFame | Show a frame in FrameColor colour or not (True/False) |
| The value of the frame's colour The value of the body's colour. this is a 32 Bit Value, where Bit 0 .. 7 is the red fraction, Bit 8 .. 15 is the green fraction and Bit 16 .. 23 is the blue fraction f.e.: Red = 000000FFh, Blue = 00FF0000h |
| The value of frame' thickness in pixel |
| Fill frame body with the BodyColor colour and the Opaqueness from BodyOpaque or not (True/False) |
| The value of the body's colour. this is a 32 Bit Value, where Bit 0 .. 7 is the red fraction, Bit 8 .. 15 is the green fraction and Bit 16 .. 23 is the blue fraction f.e.: Red = 000000FFh, Blue = 00FF0000h |
| The body'S opacity value (0 to 10) |
...
100) where 0 = full colour and 100 = NO colour (same as FillBody is false) a good choice is 80 |
C# sample
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
// change the Layout of the signing rectangle on the Colour Devices // Sample for colour values: Red(0x000000FF), Blue(0x00FF0000), Green(0x0000FF00), Yellow(0x0000FFFF)... bool drawframe = true; uint colour = 0x000000FF; // RED int framethickness = 2; bool fillbody = false; uint bodyColour = 0; int bodyOpacity = 0; SignAPIv4.SetSignatureFrameParams(drawframe, colour, framethickness, fillbody, bodyColour, bodyOpacity); SignAPIv4.SetSignDocMode(100, 100, 250, 200, 1); // Next step is to start Signing string padSettings = ""; bool Capturing = SigDev.startCapture("", true, true, true, true, ref ps); |
...