I've used the following code example to set permissions for a selected range in a richtexteditor, however, I would like code for removing previously set permission(s) for a selection in the same richtexteditor. Any help you be appreciated, thanks!
J
'Protects current selection for current user only.Dim info As New PermissionRangeInfo()info.Type = PermissionType.Individualinfo.Name = Me.RadRichTextEditor1.CurrentUser.UsernameDim infos As New List(Of PermissionRangeInfo)() From {info}Me.RadRichTextEditor1.InsertPermissionRange(infos)infos.Clear()