Page.IsConflictPage Property

Aspose.Note for .NET API

PageIsConflictPage Property

Gets or sets a value indicating whether this page is a conflict page.

Namespace:  Aspose.Note
Assembly:  Aspose.Note (in Aspose.Note.dll) Version: 18.1
Syntax
public bool IsConflictPage { get; set; }
Public Property IsConflictPage As Boolean
	Get
	Set
public:
property bool IsConflictPage {
	bool get ();
	void set (bool value);
}
member IsConflictPage : bool with get, set

Property Value

Type: Boolean
Remarks

The conflict page arises when two users try to update the same content. In this case the changes of first user are written as usual. But changes of another user can't be merged. So just a copy of page is created and marked as conflict.

At this version the conflicts are resolved in favor of the first user's changes. So if document has conflict pages then they will be shown in history but they will be skipped on saving. It is possible to reset this flag to save this pages in history as usual ones.

Detailed sample of manipulating by conflict page can be found in the online documentation.

See Also