Click or drag to resize

ModelManagerAdd Method (ListString)

Add Models

Namespace:  VIZCore3D.NET.Manager
Assembly:  VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.1104 (2.8.24.1104)
Syntax
C#
public bool Add(
	List<string> files
)

Parameters

files
Type: System.Collections.GenericListString
Model Files

Return Value

Type: Boolean
True : Sucess / False : Fail
Examples
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void AddFile()
{
    List<string> files = new List<string>();

    files.Add("C:\\Model\\100.viz");
    files.Add("C:\\Model\\101.viz");
    files.Add("C:\\Model\\102.viz");
    files.Add("C:\\Model\\103.viz");
    files.Add("C:\\Model\\104.viz");

    vizcore3d.Model.Add(files);
}
See Also