SoLDMWriterInitialize Method (String, SoDataSet, Int32, String) |
Note: This API is now obsolete.
Namespace: OIV.LDM.ConvertersAssembly: OIV.LDM (in OIV.LDM.dll) Version: 9.9.36.0 (9.9.36.0)
Syntax[EditorBrowsableAttribute(EditorBrowsableState.Never)]
[ObsoleteAttribute("See documentation for more details")]
public int Initialize(
string filename,
SoDataSet inputVolData,
int argc,
string[] argv
)
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
<ObsoleteAttribute("See documentation for more details")>
Public Function Initialize (
filename As String,
inputVolData As SoDataSet,
argc As Integer,
argv As String()
) As Integer
public:
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
[ObsoleteAttribute(L"See documentation for more details")]
int Initialize(
String^ filename,
SoDataSet^ inputVolData,
int argc,
array<String^>^ argv
)
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
[<ObsoleteAttribute("See documentation for more details")>]
member Initialize :
filename : string *
inputVolData : SoDataSet *
argc : int *
argv : string[] -> int
Parameters
- filename
- Type: SystemString
- inputVolData
- Type: OIV.LDM.NodesSoDataSet
- argc
- Type: SystemInt32
- argv
- Type: SystemString
Return Value
Type:
Int32
RemarksInitializes the writer to build a volume with the same dimensions, size and data type as inputVolData . Other parameters (e.g. tile size) and converter options (e.g. "-q" to suppress output) can be specified using argc and argv . See SoConverter.convert for a list of command line arguments. Result code is defined by the enum SoConverter.ConverterError.Obsoletesince Open Inventor 9000
Use equivalent method that take SoConverterParameters as parameter.
See Also