GH_ChunkChunkExists Method (String, Int32) | 
 
            Checks whether a chunk with the specified name and index exists in the litter. 
            Only chunks with index qualifiers are considered. 
            Name comparisons are not case-sensitive.
            
 
    Namespace: 
   GH_IO.Serialization
    Assembly:
   GH_IO (in GH_IO.dll)
Syntaxpublic bool ChunkExists(
	string name,
	int index
)
Public Function ChunkExists ( 
	name As String,
	index As Integer
) As Boolean
Parameters
- name
 - Type: SystemString
Name of chunk to test for. - index
 - Type: SystemInt32
Index of chunk to test for. 
            If less than zero, ChunkExists(string name) is called instead. 
Return Value
Type: 
BooleanTrue if a chunk with the specified name and index exists, otherwise false.
Implements
GH_IReaderChunkExists(String, Int32)
See Also