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