ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.TIF Namespace / ImGearTIFFMetadata Class / NumberOfInks Property




In This Topic
    NumberOfInks Property
    In This Topic
    Gets or sets NumberOfInks tag value.
    Syntax
    'Declaration
     
    Public Property NumberOfInks As Nullable(Of UShort)
    'Usage
     
    Dim instance As ImGearTIFFMetadata
    Dim value As Nullable(Of UShort)
     
    instance.NumberOfInks = value
     
    value = instance.NumberOfInks
    public Nullable<ushort> NumberOfInks {get; set;}
    public: __property Nullable<ushort> get_NumberOfInks();
    public: __property void set_NumberOfInks( 
       Nullable<ushort> value
    );
    public:
    property Nullable<ushort> NumberOfInks {
       Nullable<ushort> get();
       void set (    Nullable<ushort> value);
    }

    Property Value

    Nullable (boxed) ushort value.
    Remarks
    This property accesses the NumberOfInks tag. The tag specifies the number of inks. Usually equal to SamplesPerPixel, unless there are extra samples.

    Get accessor returns the tag value if the tag is present in the metadata tree, or null otherwise.

    Set accessor replaces the current tag value if the tag is present in the metadata tree, adds the tag if it was not present, or deletes the tag if a null value is passed.

    See the TIFF 6.0 specification for tag usage details.

    See Also