Click or drag to resize

NoteItemUpdateText Method

노트 텍스트 변경

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

Parameters

title
Type: SystemString
노트 텍스트
Examples
C#
// VIZCore3DX.NET Control
private VIZCore3DX.NET.VIZCore3DXControl vizcore3dx;

private void Example()
{
    //List<Data.NoteItem> notes = vizcore3dx.Note.GetSelectedItems();
    List<Data.NoteItem> notes = vizcore3dx.Note.Notes;
    if (notes.Count == 0) return;

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