How can I change left border width and color with the following code:
public class MyBorderPrimitiveSElement : RadElement { protected override void CreateChildElements() { BorderPrimitive borderPrimitive = new BorderPrimitive(); borderPrimitive.Class = "MyBorderPrimtiveClass"; borderPrimitive.BoxStyle = BorderBoxStyle.SingleBorder; borderPrimitive.Width = 3; borderPrimitive.ForeColor = Color.Red; borderPrimitive.GradientStyle = GradientStyles.Solid; this.Children.Add(borderPrimitive); base.CreateChildElements(); } }
Hello,
Can we add icon to right-click context menus' left side? If yes, how?
Kind regards,
Mehmet.

In my photoshop image I have put together a wish. Is this possible with Telerik?
1, the top of the page - the year, month, week number and the date.
2, where it is Text1, Text2, etc. to have free text and locked to the top, no scrollbar.
3, Be able to have multiple tasks on the same line.
4, can have different texts in the Title and tasks

Hi,
I am trying to clear formatting by using below command:
ClearFormattingCommand command = new ClearFormattingCommand(cEditor.RichTextBoxElement.ActiveEditor);command.Execute();However, font and size (bigger) different that set by:
private void SetDef(RadDocumentEditor editor){ editor.ChangeFontFamily(new Telerik.WinControls.RichTextEditor.UI.FontFamily("Tahoma")); editor.ChangeFontSize(Unit.PointToDip(10)); editor.ChangeFontStyle(Telerik.WinControls.RichTextEditor.UI.FontStyles.Normal); editor.ChangeFontWeight(Telerik.WinControls.RichTextEditor.UI.FontWeights.Normal); editor.ChangeParagraphSpacingAfter(0);}

Hi,
I would like to export a:
gridview, chartview
gridview, chartview
in this format like in my attached file to an Excel. How can I go about accomplishing this with Telerik Winform C#?

Hi,
How to hide caret?
I want to stay with selection text possibility but without blinking caret.
Hi,
Code below add StatusStrip with one LabelElement to form.
How to get the parent control of LabelElement by code?
Later on in my code, i must call Invoke method on StatusStrip, but i have only access to LabelElement
// Add statusbar RadStatusStrip status = new RadStatusStrip();Controls.Add(status);// Add label to statusbarRadLabelElement label = new RadLabelElement();label.Text = "test";status.Items.Add(label);// This is only radelementRadStatusBarElement RadStatusBarElement = (RadStatusBarElement)label.Parent.Parent;// Can't convert like thatRadStatusStrip RadStatusStrip = (RadStatusStrip)RadStatusBarElement;Hello Telerik,
I'm used to disable the automatic column generation in GridView because most of time it's just generate something you really don't want to deliver to your Customer.
But today, I have decided to take a little extra time, to understant how this automatic column generation works and found something in the documentation about preventing the generation of a column for specific property.
http://www.telerik.com/help/winforms/gridview-columns-generating-columns.html
That's a really nice and cool feature. But when I build a GridView most of time as developer we need more "options" to configure our grid. Do you have some more advanced resources about managing Automatic Column Generation with Properties Attribute ? I needed to configure for a given property the type of column used (could be an homemade custom column), the headertext of the column.
Of course if there is something generic about changing any properties of the column generated, it will be great !

