Dear Support,
In my in UltradayView "AppointmentShadowVisible" is true, but I need to remove the shadow only one appointment, I do this?
Regards, Lello
No, you can't, because the associated UIElement does not expose the Appointment with which it is associated. You might want to report this as a bug.
foreach (UIElement uiElement in parent.ChildElements){ AppointmentShadowUIElement AppShadow = uiElement as AppointmentShadowUIElement; Int Index = AppShadow.Parent.ChildElements.IndexOf(AppShadow);
So there is no way to trace the appointment owner of the this shadow?
}