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; }
Public Property Moveable() As Boolean

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;
Dim frameBase As TXTextControl.FrameBase = New TXTextControl.FrameBase()

frameBase.Name      = "points"
frameBase.Moveable  =  True
frameBase.Alignment = TXTextControl.HorizontalAlignment.Left