본문으로 건너뛰기

ReplaceName

Overloads

NameDescription
ReplaceName(string oldValue, string newValue)Replace Node Name

ReplaceName(string oldValue, string newValue)

public void ReplaceName(string oldValue, string newValue)

Replace Node Name

Parameters

NameTypeDescription
oldValuestringOld Value
newValuestringNew Value

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
if (vizcore3d.Model.IsOpen() == false) return;

string oldName = "HULL";
string newName = "선체";

vizcore3d.Object3D.ReplaceName(oldName, newName);
}