'Declaration Public Overridable Property RepeatFromStart As Boolean
'Usage Dim instance As SearchDialog Dim value As Boolean instance.RepeatFromStart = value value = instance.RepeatFromStart
public virtual bool RepeatFromStart {get; set;}
'Declaration Public Overridable Property RepeatFromStart As Boolean
'Usage Dim instance As SearchDialog Dim value As Boolean instance.RepeatFromStart = value value = instance.RepeatFromStart
public virtual bool RepeatFromStart {get; set;}
FarPoint.Win.Spread.SearchDialog sd; fpSpread1.SearchWithDialog("Test"); sd = fpSpread1.SearchDialog; int i = sd.FoundSheetIndex(); sd.RepeatFromStart = false; string[] s = sd.SearchStrings();
Dim sd As FarPoint.Win.Spread.SearchDialog FpSpread1.SearchWithDialog("Test") sd = FpSpread1.SearchDialog Dim i As Integer = sd.FoundSheetIndex() sd.RepeatFromStart = False Dim s As String() = sd.SearchStrings()