Hi all,
i hope i can describe this properly:
We create an ImageManager for an editor in Codebehind like this:
Then the ImageManager CallbackFunction which returns the values for the image looks like this:
Now, we would need the names of all other properties, which the properties-tab of the ImageManager holds, at least: border-color, border-width, image-alignment, margin.
Is there a list, reference or soemthing like that with the names of these properties?
Thanks in advance
Felix
i hope i can describe this properly:
We create an ImageManager for an editor in Codebehind like this:
| DialogDefinition imageManager4Editor = new DialogDefinition(typeof(ImageManagerDialog), ImageManagerParameters); |
| imageManager4Editor.ClientCallbackFunction = "ImageManagerFunction"; |
| imageManager4Editor.Width = Unit.Pixel(694); |
| imageManager4Editor.Height = Unit.Pixel(440); |
| DialogOpener1.DialogDefinitions.Add("ImageManager4Editor", imageManager4Editor); |
Then the ImageManager CallbackFunction which returns the values for the image looks like this:
| function ImageManagerFunction(sender, args) |
| { |
| var commandName = args.get_commandName(); |
| var value = args.get_value(); |
| var src = value.src; // works |
| var height = value.height; // works |
| var width = value.width; // works |
| var border = value.? // |
| ... |
| } |
Now, we would need the names of all other properties, which the properties-tab of the ImageManager holds, at least: border-color, border-width, image-alignment, margin.
Is there a list, reference or soemthing like that with the names of these properties?
Thanks in advance
Felix
