Document Solutions for PDF
DS.Documents.Pdf Assembly / GrapeCity.Documents.Pdf.Spec Namespace / IPdfDictExt Class / SetMatrix Method
The current dictionary.
The key identifying the value.
The value to set.
The default value.

In This Topic
    SetMatrix Method
    In This Topic
    Sets the System.Numerics.Matrix3x2 value associated with the specified key. If the value is null or is equal to defValue, removes the key from the dictionary.
    Syntax
    'Declaration
     
    Public Shared Sub SetMatrix( _
       ByVal dict As IPdfDict, _
       ByVal key As PdfName, _
       ByVal value As System.Nullable(Of Matrix3x2), _
       ByVal defValue As System.Nullable(Of Matrix3x2) _
    ) 
    public static void SetMatrix( 
       IPdfDict dict,
       PdfName key,
       System.Nullable<Matrix3x2> value,
       System.Nullable<Matrix3x2> defValue
    )

    Parameters

    dict
    The current dictionary.
    key
    The key identifying the value.
    value
    The value to set.
    defValue
    The default value.
    See Also