Determines whether a frame can be moved in the document at run time with the built-in mouse interface.

Syntax

public bool Moveable { get; set; }

Examples

The following example shows the FrameBase class with three of its properties. The frameBase name is "points", is moveable at runtime and is left aligned.

TXTextControl.FrameBase frameBase = new TXTextControl.FrameBase();

frameBase.Name      = "points";
frameBase.Moveable  =  true;
frameBase.Alignment = TXTextControl.HorizontalAlignment.Left;