// Please use the following namespace
// using System.Windows.Forms;
// using GrapeCity.Win.Editors;
public void InitalizeRecommendedValue()
{
// Create an instance of a GcCharMask control.
GcCharMask gcCharMask1 = new GcCharMask();
// Set the RecommendedValue property to a string value.
gcCharMask1.RecommendedValue = "RecommendedValue";
// Allow the RecommendedValue to show in the GcCharMask control.
gcCharMask1.ShowRecommendedValue = true;
}
' Please use the following namespace
' Imports System.Windows.Forms;
' Imports GrapeCity.Win.Editors;
Public Sub InitalizeRecommendedValue()
' Create an instance of a GcCharMask control.
Dim gcCharMask1 As New GcCharMask()
' Set the RecommendedValue property to a string value.
gcCharMask1.RecommendedValue = "RecommendedValue"
' Allow the RecommendedValue to show in the GcCharMask control.
gcCharMask1.ShowRecommendedValue = True
End Sub