Determines whether a frame can be moved in the document at run time with the built-in mouse interface.
public bool Moveable { get; set; }Public Property Moveable() As BooleanThe following example shows the Frame
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