DevProgressBarFormatString Property
Gets or sets the percentage format string that will be displayed on the control
when its current state is
Normal.
#current=Current Value
#total=Maximum Value
#%=Current Percentage
Namespace: DevCase.UI.ControlsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[BrowsableAttribute(true)]
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)]
[DefaultValueAttribute(typeof(string), "(#current / #total) #%")]
public virtual string FormatString { get; set; }
<BrowsableAttribute(true)>
<EditorBrowsableAttribute(EditorBrowsableState.Always)>
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)>
<DefaultValueAttribute(GetType(String), "(#current / #total) #%")>
Public Overridable Property FormatString As String
Get
Set
Dim instance As DevProgressBar
Dim value As String
value = instance.FormatString
instance.FormatString = value
public:
[BrowsableAttribute(true)]
[EditorBrowsableAttribute(EditorBrowsableState::Always)]
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility::Visible)]
[DefaultValueAttribute(typeof(String), L"(#current / #total) #%")]
virtual property String^ FormatString {
String^ get ();
void set (String^ value);
}
[<BrowsableAttribute(true)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
[<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)>]
[<DefaultValueAttribute(typeof(string), "(#current / #total) #%")>]
abstract FormatString : string with get, set
[<BrowsableAttribute(true)>]
[<EditorBrowsableAttribute(EditorBrowsableState.Always)>]
[<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)>]
[<DefaultValueAttribute(typeof(string), "(#current / #total) #%")>]
override FormatString : string with get, set
No code example is currently available or this language may not be supported.
Property Value
String
The percentage format string that will be displayed in the control
when its current state is
Normal.