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 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
 
            
            
See Also