Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / FpSpread Class / AutoLaunchSpreadDesigner Property
Example


In This Topic
    AutoLaunchSpreadDesigner Property
    In This Topic
    Gets or sets whether Spread Designer automatically launches when a Spread component is placed on a form.
    Syntax
    'Declaration
     
    Public Overridable Property AutoLaunchSpreadDesigner As Boolean
    'Usage
     
    Dim instance As FpSpread
    Dim value As Boolean
     
    instance.AutoLaunchSpreadDesigner = value
     
    value = instance.AutoLaunchSpreadDesigner
    public virtual bool AutoLaunchSpreadDesigner {get; set;}

    Property Value

    Boolean: true to automatically launch Spread Designer; false otherwise
    Remarks
    This property is design-time only.
    Example
    This example gets the value of the AutoLaunchSpreadDesigner property.
    listBox1.Items.Add(fpSpread1.AutoLaunchSpreadDesigner);
    ListBox1.Items.Add(fpSpread1.AutoLaunchSpreadDesigner)
    See Also