Provides information about an organization used in a document.

Namespace:  BargeEx
Assembly:  BargeEx (in BargeEx.dll)
Version: 3.0.400.140 (3.0.400.140)

Syntax

C#
[SerializableAttribute]
public class Organization : SerializableBase
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class Organization _
	Inherits SerializableBase
Visual C++
[SerializableAttribute]
public ref class Organization : public SerializableBase

Remarks

This class provides information about an organization used in a document.

Examples

The following example creates an instance of the Organization class and sets its common properties.
CopyVisual Basic
' Create an Organization object
Dim Organization As New BargeEx.Organization()

' Set the Organization properties
With Organization

    .Name = "Fleeter ABC"

    ' Set the Address property
    .Address = New BargeEx.Address("Street 123", "Big City", "OH", "12345")

End With ' Organization
CopyC#
// Create an Organization object
BargeEx.Organization Organization = new BargeEx.Organization();

// Set the Organization properties
Organization.Name = "Fleeter ABC";

// Set the Address property
Organization.Address = new BargeEx.Address("Street 123", "Big City", "OH", "12345");

Inheritance Hierarchy

System..::.Object
  BargeEx.Internal..::.SerializableBase
    BargeEx..::.Organization

See Also