C# Class BitMiracle.LibTiff.Classic.TiffFieldInfo

Represents a TIFF field information.
TiffFieldInfo describes a field. It provides information about field name, type, number of values etc.
Show file Open project: Core-Techs/TiffLibrary Class Usage Examples

Public Methods

Method Description
TiffFieldInfo ( TiffTag tag, short readCount, short writeCount, TiffType type, short bit, bool okToChange, bool passCount, string name )

Initializes a new instance of the TiffFieldInfo class.

ToString ( ) : string

Returns a System.String that represents this instance.

Method Details

TiffFieldInfo() public method

Initializes a new instance of the TiffFieldInfo class.
public TiffFieldInfo ( TiffTag tag, short readCount, short writeCount, TiffType type, short bit, bool okToChange, bool passCount, string name )
tag TiffTag The tag to describe.
readCount short The number of values to read when reading field information or /// one of , and .
writeCount short The number of values to write when writing field information /// or one of , and .
type TiffType The type of the field value.
bit short Index of the bit to use in "Set Fields Vector" when this instance /// is merged into field info collection. Take a look at class.
okToChange bool If true, then it is permissible to set the tag's value even /// after writing has commenced.
passCount bool If true, then number of value elements should be passed to /// method as second parameter (right after tag type AND /// before value itself).
name string The name (description) of the tag this instance describes.

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string