Permission.StoreLicenses property

Gets or sets whether the user's license to view the current form should be cached to allow offline viewing when the user cannot connect to a rights management server.

Namespace:  Microsoft.Office.InfoPath
Assembly:  Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)

Syntax

'Declaration
Public MustOverride Property StoreLicenses As Boolean
    Get
    Set
'Usage
Dim instance As Permission
Dim value As Boolean

value = instance.StoreLicenses

instance.StoreLicenses = value
public abstract bool StoreLicenses { get; set; }

Property value

Type: System.Boolean
true if the user's license will be cached for offline viewing; otherwise false.

Remarks

Corresponds to the setting of the Require a connection to verify a user's permission check box in the Permission dialog box. If the setting of the StoreLicences property is true, the check box is cleared and a user's license is cached locally. If the setting is false, the check box is selected and users other than the form owner must connect to the rights management server and acquire the license to work with the form each time they open it.

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.

Examples

In the following example, clicking the Button control sets the StoreLicenses property to false, and then displays the current value of the property.

public void CTRL1_Clicked(object sender, ClickedEventArgs e)
{
   Permission.StoreLicenses = false;
   MessageBox.Show(this.Permission.StoreLicenses.ToString());
}
Public Sub CTRL1_Clicked(ByVal sender As Object, _
   ByVal e As ClickedEventArgs)
   Permission.StoreLicenses = False
   MessageBox.Show(Me.Permission.StoreLicenses.ToString())
End Sub

See also

Reference

Permission class

Permission members

Microsoft.Office.InfoPath namespace