Aspose::BarCode::Generation::Unit Class Referencefinal

Specifies the size value in different units (Pixel, Inches, etc.). More...

Inherits System::Object.

Public Member Functions

float get_Pixels ()
 Gets size value in pixels. More...
 
void set_Pixels (float value)
 Sets size value in pixels. More...
 
float get_Inches ()
 Gets size value in inches. More...
 
void set_Inches (float value)
 Sets size value in inches. More...
 
float get_Millimeters ()
 Gets size value in millimeters. More...
 
void set_Millimeters (float value)
 Sets size value in millimeters. More...
 
float get_Point ()
 Gets size value in point. More...
 
void set_Point (float value)
 Sets size value in point. More...
 
float get_Document ()
 Gets size value in document units. More...
 
void set_Document (float value)
 Sets size value in document units. More...
 
float get_Resolution ()
 Resolution More...
 
bool Equals (System::SharedPtr< System::Object > obj) override
 Determines whether this instance and a specified object, which must also be a Unit object, have the same value. More...
 
int32_t GetHashCode () const override
 Returns the hash code for this object. More...
 
System::String ToString () const override
 Returns a human-readable string representation of this Unit. More...
 
- Public Member Functions inherited from System::Object
ASPOSECPP_SHARED_API Object ()
 Creates object. Initializes all internal data structures. More...
 
virtual ASPOSECPP_SHARED_API ~Object ()
 Destroys object. Frees all internal data structures. More...
 
ASPOSECPP_SHARED_API Object (Object const &x)
 Copy constructor. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
Objectoperator= (Object const &x)
 Assignment operator. Doesn't copy anything, really, just initializes new object and enables copy constructing subclasses. More...
 
ObjectSharedRefAdded ()
 Increments shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int SharedRefRemovedSafe ()
 Decrements and returns shared reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
int RemovedSharedRefs (int count)
 Decreases shared reference count by specified value. More...
 
Detail::SmartPtrCounter * WeakRefAdded ()
 Increments weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
void WeakRefRemoved ()
 Decrements weak reference count. Shouldn't be called directly; instead, use smart pointers or ThisProtector. More...
 
Detail::SmartPtrCounter * GetCounter ()
 Gets reference counter data structure associated with the object. More...
 
int SharedCount () const
 Gets current value of shared reference counter. More...
 
ASPOSECPP_SHARED_API void Lock ()
 Implements C# lock() statement locking. Call directly or use LockContext sentry object. More...
 
ASPOSECPP_SHARED_API void Unlock ()
 Implements C# lock() statement unlocking. Call directly or use LockContext sentry object. More...
 
virtual ASPOSECPP_SHARED_API bool Equals (ptr obj)
 Compares objects using C# Object.Equals semantics. More...
 
virtual ASPOSECPP_SHARED_API ptr MemberwiseClone () const
 Analog of C# Object.MemberwiseClone() method. Enables cloning custom types. More...
 
virtual ASPOSECPP_SHARED_API const TypeInfoGetType () const
 Gets actual type of object. Analog of C# System.Object.GetType() call. More...
 
virtual ASPOSECPP_SHARED_API bool Is (const TypeInfo &targetType) const
 Check if object represents an instance of type described by targetType. Analog of C# 'is' operator. More...
 
virtual ASPOSECPP_SHARED_API void SetTemplateWeakPtr (uint32_t argument)
 Set n'th template argument a weak pointer (rather than shared). Allows switching pointers in containers to weak mode. More...
 
virtual ASPOSECPP_SHARED_API bool FastCast (const Details::FastRttiBase &helper, void **out_ptr) const
 For internal purposes only. More...
 
template<>
bool Equals (float const &objA, float const &objB)
 
template<>
bool Equals (double const &objA, double const &objB)
 
template<>
bool ReferenceEquals (String const &str, std::nullptr_t)
 
template<>
bool ReferenceEquals (String const &str1, String const &str2)
 

Additional Inherited Members

- Public Types inherited from System::Object
typedef SmartPtr< Objectptr
 Alias for smart pointer type. More...
 
- Static Public Member Functions inherited from System::Object
static bool ReferenceEquals (ptr const &objA, ptr const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, T const &objB)
 Compares objects by reference. More...
 
template<typename T >
static std::enable_if<!IsSmartPtr< T >::value, bool >::type ReferenceEquals (T const &objA, std::nullptr_t)
 Reference-compares value type object with nullptr. More...
 
template<typename T1 , typename T2 >
static std::enable_if< IsSmartPtr< T1 >::value &&IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares reference type objects in C# style. More...
 
template<typename T1 , typename T2 >
static std::enable_if<!IsSmartPtr< T1 >::value &&!IsSmartPtr< T2 >::value, bool >::type Equals (T1 const &objA, T2 const &objB)
 Compares value type objects in C# style. More...
 
static const TypeInfoType ()
 Implements C# typeof(System.Object) construct. More...
 

Detailed Description

Specifies the size value in different units (Pixel, Inches, etc.).

This sample shows how to create and save a BarCode image.

[C#]
using (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128))
{
generator.Parameters.Barcode.BarHeight.Millimeters = 10;
generator.Save("test.png");
}

Member Function Documentation

◆ Equals()

bool Aspose::BarCode::Generation::Unit::Equals ( System::SharedPtr< System::Object obj)
override

Determines whether this instance and a specified object, which must also be a Unit object, have the same value.

Parameters
objThe Unit to compare to this instance.
Returns
true if obj is a Unit and its value is the same as this instance; otherwise, false. If obj is null, the method returns false.

◆ get_Document()

float Aspose::BarCode::Generation::Unit::get_Document ( )

Gets size value in document units.

◆ get_Inches()

float Aspose::BarCode::Generation::Unit::get_Inches ( )

Gets size value in inches.

◆ get_Millimeters()

float Aspose::BarCode::Generation::Unit::get_Millimeters ( )

Gets size value in millimeters.

◆ get_Pixels()

float Aspose::BarCode::Generation::Unit::get_Pixels ( )

Gets size value in pixels.

◆ get_Point()

float Aspose::BarCode::Generation::Unit::get_Point ( )

Gets size value in point.

◆ get_Resolution()

float Aspose::BarCode::Generation::Unit::get_Resolution ( )

Resolution

◆ GetHashCode()

int32_t Aspose::BarCode::Generation::Unit::GetHashCode ( ) const
overridevirtual

Returns the hash code for this object.

Returns
A 32-bit signed integer hash code.

Reimplemented from System::Object.

◆ set_Document()

void Aspose::BarCode::Generation::Unit::set_Document ( float  value)

Sets size value in document units.

◆ set_Inches()

void Aspose::BarCode::Generation::Unit::set_Inches ( float  value)

Sets size value in inches.

◆ set_Millimeters()

void Aspose::BarCode::Generation::Unit::set_Millimeters ( float  value)

Sets size value in millimeters.

◆ set_Pixels()

void Aspose::BarCode::Generation::Unit::set_Pixels ( float  value)

Sets size value in pixels.

◆ set_Point()

void Aspose::BarCode::Generation::Unit::set_Point ( float  value)

Sets size value in point.

◆ ToString()

System::String Aspose::BarCode::Generation::Unit::ToString ( ) const
overridevirtual

Returns a human-readable string representation of this Unit.

Returns
A string that represents this Unit.

Reimplemented from System::Object.