Class FormSection

Represents .

Inheritance
System.Object
FormSection
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.MetaForm
Assembly: Mediachase.BusinessFoundation.dll
Version: 10.8.0
Syntax
public class FormSection

Constructors

FormSection()

Initializes a new instance of the FormSection class.

Declaration
public FormSection()

FormSection(String, Int32, Boolean, Int32)

Initializes a new instance of the FormSection class.

Declaration
public FormSection(string uid, int borderType, bool showLabel, int itemIndex)
Parameters
Type Name Description
System.String uid

The uid.

System.Int32 borderType

Type of the border.

System.Boolean showLabel

if set to true [show label].

System.Int32 itemIndex

Index of the item.

Properties

BorderType

Gets or sets the type of the border.

Declaration
public int BorderType { get; set; }
Property Value
Type Description
System.Int32

The type of the border.

Control

Gets or sets the control.

Declaration
public FormControl Control { get; set; }
Property Value
Type Description
FormControl

The control.

HandlerName

Gets or sets the name of the handler.

Declaration
public string HandlerName { get; set; }
Property Value
Type Description
System.String

The name of the handler.

ItemIndex

Gets or sets the index of the item.

Declaration
public int ItemIndex { get; set; }
Property Value
Type Description
System.Int32

The index of the item.

Labels

Gets or sets the labels.

Declaration
public List<FormLabel> Labels { get; set; }
Property Value
Type Description
System.Collections.Generic.List<FormLabel>

The labels.

ShowLabel

Gets or sets a value indicating whether [show label].

Declaration
public bool ShowLabel { get; set; }
Property Value
Type Description
System.Boolean

true if [show label]; otherwise, false.

Uid

Gets or sets the uid.

Declaration
public string Uid { get; set; }
Property Value
Type Description
System.String

The uid.