Determines whether the component is under strict standards-compliant mode.
Syntax
Visual Basic (Declaration) | |
---|
Public Function IsStrictMode() As Boolean |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As FpSpread
Dim value As Boolean
value = instance.IsStrictMode() |
C# | |
---|
public bool IsStrictMode() |
Return Value
Boolean:
true if in strict mode;
false otherwise
Remarks
Example
This example determines whether the component is under strict standards-compliant mode.
C# | Copy Code |
---|
bool b = FpSpread1.IsStrictMode();
if (b)
{
string msg = "The page is under strict standards-compliant mode.";
Response.Write("alert('" + msg + "')");
} |
Visual Basic | Copy Code |
---|
Dim b As Boolean = FpSpread1.IsStrictMode()
If b Then
Dim msg As String = "The page is under strict standards-compliant mode."
Response.Write("alert('" & msg & "')")
End If |
Requirements
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
See Also