SalesInfo Method |  |
Displayed information
Namespace:
Velo.Database.Migration.Database
Assembly:
Velo.Database.Migration (in Velo.Database.Migration.exe) Version: 22.2.10.1 (22.2.10.450)
Syntaxprivate static string Info(
this Label pLabel,
string pInformation
)
<ExtensionAttribute>
Private Shared Function Info (
pLabel As Label,
pInformation As String
) As String
Parameters
- pLabel
- Type: System.Windows.ControlsLabel
Windows control label to information displayed - pInformation
- Type: SystemString
Information text to displayed
Return Value
Type:
StringReturn information text, this can append for result message.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Label. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Examples
This example append information text to result message and displayed to windows control label
lResultMessage = lResultMessage.AddTextAndCRLF(pLabelInformation.Info($"rapADRID: {lAdrID.ToString().PadLeft(8)} {lAdresse.Label}"));
See Also