ReplaceName
Overloads
| Name | Description |
|---|---|
| ReplaceName(string oldValue, string newValue) | Replace Node Name |
ReplaceName(string oldValue, string newValue)
public void ReplaceName(string oldValue, string newValue)
Replace Node Name
Parameters
| Name | Type | Description |
|---|---|---|
| oldValue | string | Old Value |
| newValue | string | New 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);
}