Hello,
I am looking for a way to find all the images from a document and run them through a compressing do reduce the document size.
I found a way to find all images and I have the code to compress them but I am not sure how to replace the image after I find them.
foreach (Section section in this.radRichTextEditor1.Document.Sections){ foreach (Block block in section.Blocks) { Paragraph p = block as Paragraph; if (p != null) { foreach (Inline inlineElement in p.Inlines) { ImageInline image = inlineElement as ImageInline; if (image != null) { Telerik.WinControls.RichTextEditor.UI.BitmapSource bitSource; bitSource = image.ImageSource; } } } }}Regards, Dan

I'm not using themes in my project yet but I would like this to work as if I were. I'm setting up some RadLabels to contain both the name of the piece of information and the value of it. I.E. RadLabel1.Text = string.Format("<html><color=Navy>Item Number: <color=Black>{0}", theItemNumber);
How can I get the color name for the text at the top of the RadForm (or any control's forecolor that is used to display text)?
Also, where I'm setting the color back to the default for the label, is Black the default or is there some place to find that color as well?
Thank you,
Gary

Hello,
I'm using Q1 2017 radcontrols for winforms (vb.net).
I have a radporama with a radtile, and a radpropertygrid, with the radtile as selectedobject.
When i set an image to the radtile using the radpropertygrid, everything works fine. But i dont know how to reset the image to nothing. If i select the image in the radpropertygrid, and the press "delete" on my keyboard, nothing happens.
I need a solution without clicking on the square and reset.
Could you help me?
Thanks in advance.
Best regards.
Hello,
I'm using Q1 2017 radcontrols for winforms (vb.net).
When you bind the radpropertygrid to an objet that have a font property for instance, you have in the radpropertygrid an arrow appearing.
My question is : is-it possible to disable or hide the "plus" sign ?
Thanks in advance.
Best regards.


Hi,
i would like to change the color of my tileElement in runtime (property defined by user), but i would like to keep the effect of the tileElement (another color define for mouseover)
Is there any way ?
Hi,
i made a custom filtering in my Grid. I have a FilterCell with a "FilterClearButton" and I confirm my FilterCellEntry with the Keys "Enter" or Tab.
I also set these properties:
loGridFilterCellElement:FilterButton:Visibility = Telerik.WinControls.ElementVisibility:Collapsed
loGridFilterCellElement:FilterOperatorText:Visibility = Telerik.WinControls.ElementVisibility:Collapsed
When I leave my Filtercell(CellEndEdit Event), I make a new Filterdescriptor.
loFilterDescriptor = NEW Telerik.WinControls.Data.FilterDescriptor().
loFilterDescriptor:Operator = Telerik.WinControls.Data.FilterOperator:Contains.
loFilterDescriptor:PropertyName = poGridViewDataColumn:Name.
loFilterDescriptor:IsFilterEditor = TRUE.
loFilterDescriptor:VALUE = poVal.
and add it to the FilterDescriptorCollection of my Grid.
THIS-OBJECT:FilterDescriptors:BeginUpdate().
THIS-OBJECT:FilterDescriptors:Add(loFilterDescriptor).
THIS-OBJECT:FilterDescriptors:EndUpdate().
So far, there is no problem but if I filter a column for "Dom" and in my Grid there are two entries in this column with "Zöbl Dominik" and "test user" the Grid is empty. But if I enter "Zöb" in my Filtercell and leave it, the Entry "Zöbl Dominik" is shown in my Grid.
I think i have missed some property or other setting. It seems like it is filtering with "Begins" and not contains but I already iterated through oll the FilterDescriptors of my Grid and all are with "Contains".
I know it is not easy to help me in that case because I made a lot of these extras myself but does anybody have an idea what i have made false?
Sincerely,
Dominik Zöbl

I need to pivot the the Day View so that my resources show up along the left vertical column and the time of day is horizontal across the top.
Using your example provided here.... http://docs.telerik.com/devtools/winforms/scheduler/views/grouping-by-resources#grouping-by-resources-in-different-views
..as a reference point...
Alan and Ann are stacked along the left side of the view. And the times 0300-1600 are laid across the top.
Thank you in advance.
-Scott