KaxToolBarButtonCheckedImageUrl Property |
Gets or sets the path to an image to display for the button when its
Checked state is "true".
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string CheckedImageUrl { get; set; }
Public Property CheckedImageUrl As String
Get
Set
public:
property String^ CheckedImageUrl {
String^ get ();
void set (String^ value);
}
member CheckedImageUrl : string with get, set
Property Value
Type:
String
The path to the image to display when its
Checked state is "true". The default value
is empty string.
Remarks
Use the CheckedImageUrl property to specify the image that will be
used when the button is checked. If the CheckedImageUrl
property is set to empty string the image specified by the ImageUrl
property will be used. Use "~" (tilde) when referring to images within the current
ASP.NET application.
Examples<kettic:KaxToolBar id="KaxToolBar1" runat="server">
<Items>
<kettic:KaxToolBarButton ImageUrl="~/Img/alignLeft.gif"
CheckedImageUrl="~/Img/alignLeftChecked.gif" Text="Left" />
<kettic:KaxToolBarButton ImageUrl="~/Img/alignRight.gif"
CheckedImageUrl="~/Img/alignRightChecked.gif" Text="Right"
/>
</Items>
</kettic:KaxToolBar>
See Also