ClipboardContentOptions.IsRoamable Property

Definition

Gets or sets a value that indicates whether the new content being added to the clipboard can be synced to other devices.

public:
 property bool IsRoamable { bool get(); void set(bool value); };
bool IsRoamable();

void IsRoamable(bool value);
public bool IsRoamable { get; set; }
var boolean = clipboardContentOptions.isRoamable;
clipboardContentOptions.isRoamable = boolean;
Public Property IsRoamable As Boolean

Property Value

Boolean

bool

True if the new content being added to the clipboard can be synced to other devices; otherwise, false.

Remarks

The default value of this property is true.

Clipboard roaming must be enabled for this property to have an effect.

Applies to

See also