Hi. I was able to "remove" options and exit buttons which appear at run-time with this code:
this.radRibbonBar1.ExitButton.Visibility = ElementVisibility.Collapsed;this.radRibbonBar1.OptionsButton.Visibility = ElementVisibility.Collapsed;
But how shall i remove this separator line over here which was above options and exit button?

Hello
I'm using ThemeResolutionService.LoadPackageFile to load a tssp file and apply the theme for the whole application with ThemeResolutionService.ApplicationThemeName = AppliThemeName;
My RadForm (F1) has MdiChildren detect by a RadDock (RD1).
One of these MdiChildren is an other RadForm (F2) which contains a radDock (RD2) which contains some others RadForm (F3x) added with DockControl method.
The F3x RadForms are not themed.
Is there anything else to do for apply theme in this case?
Infos version:
.Net 4.6.1.
Telerik 2017.1.221.40


Hello dear,
I need to know the possibility of enable filtration with some values to show just rows that contain any value from parameters, regards.

I have changed the Label on the Trackball to the data I want to display. In this case it is 4 lines. I would like to change the color of each line of text individually. I can change the color of all of the text in the label, but not on a line by line basis. Here is a snippet of my code:
ChartTrackballController trackBallController = new ChartTrackballController();trackBallController.TextNeeded += TrackBallController_TextNeeded;radChartView1.Controllers.Add(trackBallController);
private void TrackBallController_TextNeeded(object sender, TextNeededEventArgs e){ CategoricalDataPoint dataPoint1 = e.Points[0].DataPoint as CategoricalDataPoint; CategoricalDataPoint dataPoint2 = e.Points[1].DataPoint as CategoricalDataPoint; e.Element.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; e.Element.ForeColor = System.Drawing.Color.Blue; float difference = Math.Abs((float)dataPoint1.Value - (float)dataPoint2.Value); e.Text = string.Format("Line1: {0}\nLine2: {1}\nLine3: {2}\nLine4: {3}", dataPoint1.Category, dataPoint1.Value, dataPoint2.Value, difference); }
Hello,
probably this will be a really simple and stupid question but nevertheless, I am stuck.
This is what I tried to do: We store rtf in a database and are planning to use Telerik controls in the future (there is a lot of impressive software inside).
Importing the rtf-text to RichTextEditor is quite easy. I simply put the content of the database field into a string variable and import it into RichtextEditore with this code:
Private Sub ImportRtf() Dim provider As New RtfFormatProvider() content = CStr(DataGridView.CurrentRow.Cells(xx).Value) Me.RadRichTextEditor1.Document = provider.Import(content) End SubThis works perfectly.
After editing the text in RichTextEditor I need to export the new text as rtf to a string to store it in the database. I looked over the documentation and found this:
Public Function ExportToRtf(ByVal document As RadDocument) As String Dim provider As New RtfFormatProvider() Return provider.Export(document)End FunctionI tried to assign the function's return value to an another string variable:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim content1 As String = ExportToRtf() MsgBox(content1)End SubVisualStudio puts a wiggled blue line under ExportToRtf() and demanded a missing argument for the functions's parameter "document".
Please tell me where my fault is.
Thanks in advance.
P. Arnold

