class DJICameraSSDClipFileName
@interface DJICameraSSDClipFileName : NSObject
|
Description:
The name of a video file stored in SSD.
Class Members:
property equipmentLabel
@property(nonatomic, readonly) char equipmentLabel
|
Header: | DJICameraSettingsDef.h |
Description:
A single captical character represents the equipment. The possible value is from 'A' to 'Z'.
property reelID
@property(nonatomic, readonly) uint16_t reelID
|
Header: | DJICameraSettingsDef.h |
Description:
The reel ID. The possible value is from 0 to 999.
property clipID
@property(nonatomic, readonly) uint16_t clipID
|
Header: | DJICameraSettingsDef.h |
Description:
The clip ID. The possible value is from 0 to 999.
method initWithEquipmentLabel:reelID:clipID
- (nullable instancetype)initWithEquipmentLabel:(char)label reelID:(uint16_t)reelID clipID:(uint16_t)clipID
|
Header: | DJICameraSettingsDef.h |
Description:
Create a SSD clip name instance.
char label | The equipment label of the clip. The valid input is from 'A' to 'Z'. |
uint16_t reelID | The reel ID. The valid input is from 0 to 999. |
uint16_t clipID | The clip ID. The valid input is from 0 to 999. |
Return:
nullable instancetype | A clip name instance. Return nil if the input is invalid. |