Edit the note.

Namespace:  IpernityNET.IpernityObjects
Assembly:  IpernityNET (in IpernityNET.dll) Version: 0.3.1.0 (0.3.1.0)

Syntax

C#
public void DocNotesEdit(
	string content,
	int x,
	int y,
	int w,
	int h,
	bool preview
)
Visual Basic (Declaration)
Public Sub DocNotesEdit ( _
	content As String, _
	x As Integer, _
	y As Integer, _
	w As Integer, _
	h As Integer, _
	preview As Boolean _
)
Visual C++
public:
void DocNotesEdit(
	String^ content, 
	int x, 
	int y, 
	int w, 
	int h, 
	bool preview
)

Parameters

content
Type: System..::.String
The new note text. (Some HTML tags are accepted)
x
Type: System..::.Int32
The left coordinate of the note.
y
Type: System..::.Int32
The top coordinate of the note.
w
Type: System..::.Int32
The width of the note.
h
Type: System..::.Int32
The height of the note.
preview
Type: System..::.Boolean
Set this flag to true to preview the note. The note will not be added.

Remarks

This method requires "write" permission on docs.

Exceptions

ExceptionCondition
IpernityNET..::.IpernityExceptionThrowed when Ipernity returned an error
IpernityNET.IpernityObjects..::.ObjectNotConfiguredExceptionThrowed when an Ipernity object has not been configured. Use the method ConfigureIpernityObject(IpernityObject) to configure the object and allow it to interact with Ipernity

See Also