BinaryArchiveReaderBeginRead3dmChunk Method (UInt32, Int32, Int32) |
Begins reading a chunk that must be in the archive at this location.
Namespace:
Rhino.FileIO
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public bool BeginRead3dmChunk(
uint expectedTypeCode,
out int majorVersion,
out int minorVersion
)
Public Function BeginRead3dmChunk (
expectedTypeCode As UInteger,
<OutAttribute> ByRef majorVersion As Integer,
<OutAttribute> ByRef minorVersion As Integer
) As Boolean
Parameters
- expectedTypeCode
- Type: SystemUInt32
[Missing <param name="expectedTypeCode"/> documentation for "M:Rhino.FileIO.BinaryArchiveReader.BeginRead3dmChunk(System.UInt32,System.Int32@,System.Int32@)"]
- majorVersion
- Type: SystemInt32
[Missing <param name="majorVersion"/> documentation for "M:Rhino.FileIO.BinaryArchiveReader.BeginRead3dmChunk(System.UInt32,System.Int32@,System.Int32@)"]
- minorVersion
- Type: SystemInt32
[Missing <param name="minorVersion"/> documentation for "M:Rhino.FileIO.BinaryArchiveReader.BeginRead3dmChunk(System.UInt32,System.Int32@,System.Int32@)"]
Return Value
Type:
Boolean
True if beginning of the chunk was read. In this case you must call EndRead3dmChunk(),
even if something goes wrong while you attempt to read the interior of the chunk.
False if the chunk did not exist at the current location in the file.
See Also