Discuss this help topic in SecureBlackbox Forum

TElPDFSignatureWidgetProps.OnLookupGlyphName

TElPDFSignatureWidgetProps     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event is fired each time an unknown glyph (character) is encountered in the text.

Declaration

[C#]
    event TSBPDFLookupGlyphNameEvent OnLookupGlyphName;
    delegate void TSBPDFLookupGlyphNameEvent(Object Sender, int UCS);

[VB.NET]
    Event OnLookupGlyphName As TSBPDFLookupGlyphNameEvent
    Delegate Sub TSBPDFLookupGlyphNameEvent(ByVal Sender As Object, ByVal UCS As Integer)

[Pascal]
    property OnLookupGlyphName : TSBPDFLookupGlyphNameEvent;
    TSBPDFLookupGlyphNameEvent = function(Sender : TObject; UCS : Integer): string of object;

[C++]
    void get_OnLookupGlyphName(TSBPDFLookupGlyphNameEvent &pMethodOutResult, void * &pDataOutResult);
    void set_OnLookupGlyphName(TSBPDFLookupGlyphNameEvent pMethodValue, void * pDataValue);
    typedef void (SB_CALLBACK *TSBPDFLookupGlyphNameEvent)(void * _ObjectData, TObjectHandle Sender, int32_t UCS);

[PHP]
    TSBPDFLookupGlyphNameEvent|callable|NULL get_OnLookupGlyphName()
    void set_OnLookupGlyphName(TSBPDFLookupGlyphNameEvent|callable|NULL $Value)
    callable TSBPDFLookupGlyphNameEvent(TObject $Sender, integer $UCS)

[Java]
    TSBPDFLookupGlyphNameEvent getOnLookupGlyphName();
    void setOnLookupGlyphName(TSBPDFLookupGlyphNameEvent Value);
    TSBPDFLookupGlyphNameEvent.Callback OnLookupGlyphName = new TSBPDFLookupGlyphNameEvent.Callback() {
        public String TSBPDFLookupGlyphNameEventCallback(TObject Sender, int UCS) {
            //...
        }
    }

Parameters

  • UCS - the code point of the character.

Return value

    Should return the name of the symbol.

Description

    This event is fired when a character in the widget's text has a code point that is missing from the ISO/IEC 10646 Universal Character Set (UCS). The handler should return the character's name, or substituting text. When a handler is not defined, the name is chosen automatically: it consists of the prefix "uni" and a hexadecimal code of the character.

See also:     AutoAdjustEncoding     OnLookupGlyphWidth    

Discuss this help topic in SecureBlackbox Forum