Get a AFRange_Validate string

Namespace: Spire.Pdf.Actions
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 6.2.6.0 (6.2.6.2020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public static string GetRangeValidateString(
	bool bGreaterThan,
	float nGreaterThan,
	bool bLessThan,
	float nLessThan
)
Public Shared Function GetRangeValidateString ( 
	bGreaterThan As Boolean,
	nGreaterThan As Single,
	bLessThan As Boolean,
	nLessThan As Single
) As String
public:
static String^ GetRangeValidateString(
	bool bGreaterThan, 
	float nGreaterThan, 
	bool bLessThan, 
	float nLessThan
)
static member GetRangeValidateString : 
        bGreaterThan : bool * 
        nGreaterThan : float32 * 
        bLessThan : bool * 
        nLessThan : float32 -> string 

Parameters

bGreaterThan
Boolean
Indicate the use of the greater than comparison
nGreaterThan
Single
The value to be used in the greater than comparison
bLessThan
Boolean
Indicate the use of the less than comparison
nLessThan
Single
The value to be used in the less than comparison

Return Value

String

See Also