Click or drag to resize

NoteItemUpdateText Method

노트 텍스트 변경

Namespace: VIZCore3D.NET.Data
Assembly: VIZCore3D.NET (in VIZCore3D.NET.dll) Version: 2.8.24.910 (2.8.24.910)
Syntax
C#
public void UpdateText(
	string title
)

Parameters

title  String
노트 텍스트
Example
C#
// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void Example()
{
    List<VIZCore3D.NET.Data.NoteItem> notes = vizcore3d.Review.Note.GetSelectedItems();
    if (notes.Count == 0) return;

    notes[0].UpdateText("New Note Text!!");
}
See Also