ImageGear .NET v25.2 - Updated
ImageGear.Formats.Vector Assembly / ImageGear.Vector Namespace / ImGearVectorFont Class / GetGlyph Method
Index of the glyph to be returned.




In This Topic
    GetGlyph Method
    In This Topic
    Returns Vertex Container for access to the Vector glyph.
    Syntax
    'Declaration
     
    Public Function GetGlyph( _
       ByVal index As Integer _
    ) As ImGearVectorVertexCont
    'Usage
     
    Dim instance As ImGearVectorFont
    Dim index As Integer
    Dim value As ImGearVectorVertexCont
     
    value = instance.GetGlyph(index)
    public ImGearVectorVertexCont GetGlyph( 
       int index
    )
    public: ImGearVectorVertexCont* GetGlyph( 
       int index
    ) 
    public:
    ImGearVectorVertexCont^ GetGlyph( 
       int index
    ) 

    Parameters

    index
    Index of the glyph to be returned.

    Return Value

    New instance of ImGearVectorVertexCont class object in case of the font is Vector and null for TrueType font.
    Remarks
    The application can fill and modify any vector glyph. This method returns null for non-vector font.
    See Also