SoVolumeReaderGetDataChar Method |
Gets the characteristics (file header) of the data volume. See
SoVolumeData.SetVolumeData().
Namespace: OIV.LDM.ReadersAssembly: OIV.LDM (in OIV.LDM.dll) Version: 10.12.3.0 (10.12.3.0)
Syntax public abstract SoVolumeReaderReadErrors GetDataChar(
out SbBox3f size,
out SoDataSetDataTypes type,
out SbVec3i32 dim
)
Public MustOverride Function GetDataChar (
<OutAttribute> ByRef size As SbBox3f,
<OutAttribute> ByRef type As SoDataSetDataTypes,
<OutAttribute> ByRef dim As SbVec3i32
) As SoVolumeReaderReadErrors
public:
virtual SoVolumeReaderReadErrors GetDataChar(
[OutAttribute] SbBox3f% size,
[OutAttribute] SoDataSetDataTypes% type,
[OutAttribute] SbVec3i32% dim
) abstract
abstract GetDataChar :
size : SbBox3f byref *
type : SoDataSetDataTypes byref *
dim : SbVec3i32 byref -> SoVolumeReaderReadErrors
Parameters
- size
- Type: OIV.InventorSbBox3f
- type
- Type: OIV.LDM.NodesSoDataSetDataTypes
- dim
- Type: OIV.InventorSbVec3i32
Return Value
Type:
SoVolumeReaderReadErrorsRemarks
You can use the convenience method setFilename() to specify the file location,
in which case you will not have to open the file yourself. Then you can use
the convenience method getBuffer() to read the header in order to get the requested
information.
See Also