[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Forms.IContentControl.LockedText

LockedText Property

LockedText

Gets or sets whether the text is locked.

Use this property to determine whether the displayed text of the control is currently locked.

Declaration
bool LockedText { get; set; }
Property LockedText As Boolean
Examples
IContentControl control = worksheet.Controls.AddLabel(20, 20, 120, 24);
control.Text = "Name";
control.LockedText = true;
bool lockedText = control.LockedText;