본문으로 건너뛰기

AddNoteSurface

Overloads

NameDescription
AddNoteSurface(string text)표면 노트 추가 (위치는 사용자가 선택)
AddNoteSurface(string noteText, bool useSymbol, string symbolText)표면 노트 추가
AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ)표면 노트 추가
AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style)표면 노트 추가
AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, Object tag)표면 노트 추가
AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style, Object tag)표면 노트 추가
AddNoteSurface(string text, Vertex3D position, Vertex3D surface)표면 노트 추가
AddNoteSurface(string text, Vertex3D position, Vertex3D surface, NoteStyle style)표면 노트 추가
AddNoteSurface(string text, Vertex3D position, Vertex3D surface, Object tag)표면 노트 추가
AddNoteSurface(string text, Vertex3D position, Vertex3D surface, NoteStyle style, Object tag)표면 노트 추가
AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ)표면 노트 추가
AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style)표면 노트 추가
AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, Object tag)표면 노트 추가
AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style, Object tag)표면 노트 추가
AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface)표면 노트 추가
AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, NoteStyle style)표면 노트 추가
AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, Object tag)표면 노트 추가
AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, NoteStyle style, Object tag)표면 노트 추가
AddNoteSurface(string text, float surfaceX, float surfaceY, float surfaceZ)표면 노트 추가 (텍스트 위치는 사용자가 선택)
AddNoteSurface(string text, Vertex3D surface)표면 노트 추가 (텍스트 위치는 사용자가 선택)

AddNoteSurface(string text)

public void AddNoteSurface(string text)

표면 노트 추가 (위치는 사용자가 선택)

Parameters

NameTypeDescription
textstring텍스트

AddNoteSurface(string noteText, bool useSymbol, string symbolText)

public void AddNoteSurface(string noteText, bool useSymbol, string symbolText)

표면 노트 추가

Parameters

NameTypeDescription
noteTextstring노트 텍스트
useSymbolbool심볼 사용 여부
symbolTextstring심볼 텍스트

AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ)

public int AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style)

public int AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z
styleNoteStyle노트 스타일

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, Object tag)

public int AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style, Object tag)

public int AddNoteSurface(string text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z
styleNoteStyle노트 스타일
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, Vertex3D position, Vertex3D surface)

public int AddNoteSurface(string text, Vertex3D position, Vertex3D surface)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
positionVertex3D위치
surfaceVertex3D표면점

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, Vertex3D position, Vertex3D surface, NoteStyle style)

public int AddNoteSurface(string text, Vertex3D position, Vertex3D surface, NoteStyle style)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
positionVertex3D위치
surfaceVertex3D표면점
styleNoteStyle노트 스타일

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, Vertex3D position, Vertex3D surface, Object tag)

public int AddNoteSurface(string text, Vertex3D position, Vertex3D surface, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
positionVertex3D위치
surfaceVertex3D표면점
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, Vertex3D position, Vertex3D surface, NoteStyle style, Object tag)

public int AddNoteSurface(string text, Vertex3D position, Vertex3D surface, NoteStyle style, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textstring텍스트
positionVertex3D위치
surfaceVertex3D표면점
styleNoteStyle노트 스타일
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ)

public int AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style)

public int AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z
styleNoteStyle노트 스타일

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, Object tag)

public int AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style, Object tag)

public int AddNoteSurface(MultiColorText text, float x, float y, float z, float surfaceX, float surfaceY, float surfaceZ, NoteStyle style, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
xfloat위치 X
yfloat위치 Y
zfloat위치 Z
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z
styleNoteStyle노트 스타일
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface)

public int AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
positionVertex3D위치
surfaceVertex3D표면점

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, NoteStyle style)

public int AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, NoteStyle style)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
positionVertex3D위치
surfaceVertex3D표면점
styleNoteStyle노트 스타일

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, Object tag)

public int AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
positionVertex3D위치
surfaceVertex3D표면점
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, NoteStyle style, Object tag)

public int AddNoteSurface(MultiColorText text, Vertex3D position, Vertex3D surface, NoteStyle style, Object tag)

표면 노트 추가

Parameters

NameTypeDescription
textMultiColorText다중 색상 텍스트
positionVertex3D위치
surfaceVertex3D표면점
styleNoteStyle노트 스타일
tagObject항목에 연결할 데이터가 포함된 개체

Returns

TypeDescription
int생성된 노트 아이디(ID)

AddNoteSurface(string text, float surfaceX, float surfaceY, float surfaceZ)

public void AddNoteSurface(string text, float surfaceX, float surfaceY, float surfaceZ)

표면 노트 추가 (텍스트 위치는 사용자가 선택)

Parameters

NameTypeDescription
textstring텍스트
surfaceXfloat표면점 X
surfaceYfloat표면점 Y
surfaceZfloat표면점 Z

AddNoteSurface(string text, Vertex3D surface)

public void AddNoteSurface(string text, Vertex3D surface)

표면 노트 추가 (텍스트 위치는 사용자가 선택)

Parameters

NameTypeDescription
textstring텍스트
surfaceVertex3D표면점