Visual Basic
C#
Managed Extensions for C++
C++/CLI
Parameters
- page
- ImGearPage object to verify.
Return Value
| True | ImGearIC.TextAutoOrientation method can be applied to the specified page. |
| False | ImGearIC.TextAutoOrientation method cannot be applied to the specified page. |
| C# | Copy Code |
|---|---|
if (ImGearIC.Verifier.CanApplyAutoOrient(igPage)) { // The IC method can be applied to igPage. // Apply it here. } | |
| Visual Basic | Copy Code |
|---|---|
If ImGearIC.Verifier.CanApplyAutoOrient(igPage) Then ' The IC method can be applied to igPage. ' Apply it here. End If | |